Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .codecov.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
comment: off
9 changes: 0 additions & 9 deletions .coveragerc

This file was deleted.

39 changes: 39 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: CI

on:
push:
branches: ["master"]
pull_request:
branches: ["master"]

jobs:
tox:
runs-on: ubuntu-latest
strategy:
max-parallel: 5
matrix:
python-version:
- 3.6
- 3.7
- 3.8
- 3.9
- pypy3

steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install tox
run: |
python -m pip install --upgrade pip setuptools
pip install --upgrade tox tox-gh-actions
- name: Initialize tox envs
run: |
tox --parallel auto --notest
- name: Test with tox
run: |
tox --parallel 0
- uses: codecov/codecov-action@v1
with:
file: ./coverage.xml
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ dist/
*.pyc
__pycache__
.coverage
coverage.xml
.tox/
.hypothesis/
.cache/
23 changes: 0 additions & 23 deletions .travis.yml

This file was deleted.

9 changes: 8 additions & 1 deletion HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,11 +1,18 @@
Changelog
=========

1.4.0-dev
2.0.0-dev
---------

**API Changes**

- Support for Python 2.7 has been removed.
- Support for Python 3.3 has been removed.
- Support for Python 3.4 has been removed.
- Support for Python 3.5 has been removed.
- Support for PyPy (Python 2.7 compatible) has been removed.
- Support for Python 3.8 has been added.
- Support for Python 3.9 has been added.
- Throw ``TypeError`` when creating a priority tree with a ``maximum_streams``
value that is not an integer.
- Throw ``ValueError`` when creating a priority tree with a ``maximum_streams``
Expand Down
11 changes: 9 additions & 2 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,9 @@
include README.rst LICENSE CONTRIBUTORS.rst HISTORY.rst

graft priority
graft docs
graft test
graft visualizer
graft examples
prune docs/build
recursive-include *.py
include README.rst LICENSE CONTRIBUTORS.rst HISTORY.rst tox.ini Makefile
global-exclude *.pyc *.pyo *.swo *.swp *.map *.yml *.DS_Store
4 changes: 1 addition & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
.PHONY: publish

publish:
rm -rf dist/*
python setup.py sdist bdist_wheel
tox -e packaging
twine upload -s dist/*

Loading