Skip to content

Commit

Permalink
v6.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Kriechi committed Apr 17, 2021
1 parent 72a6db5 commit 91eedb3
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 26 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ jobs:
- 3.6
- 3.7
- 3.8
- 3.9
- pypy3

steps:
Expand Down
14 changes: 3 additions & 11 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,22 +1,14 @@
Release History
===============

dev
---

**API Changes (Backward Incompatible)**

-
6.0.1 (2021-04-17)
------------------

**API Changes (Backward-compatible)**

- Added support for Python 3.9.
- Added type hints.

**Bugfixes**

-


6.0.0 (2020-09-06)
------------------

Expand Down
3 changes: 1 addition & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
.PHONY: publish

publish:
rm -rf dist/
tox -e packaging
twine upload -s dist/*
twine upload dist/*
2 changes: 1 addition & 1 deletion src/hyperframe/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
A module for providing a pure-Python HTTP/2 framing layer.
"""
__version__ = '6.1.0+dev'
__version__ = '6.0.1'
25 changes: 13 additions & 12 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,22 +1,23 @@
[tox]
envlist = py36, py37, py38, pypy3, lint, docs, packaging
envlist = py36, py37, py38, py39, pypy3, lint, docs, packaging

[gh-actions]
python =
3.6: py36
3.7: py37
3.8: py38, lint, docs, packaging
3.9: py39
pypy3: pypy3

[testenv]
passenv =
GITHUB_*
deps =
pytest==6.0.1
pytest-cov==2.10.1
pytest-xdist==2.1.0
pytest>=6.0.1,<7
pytest-cov>=2.10.1,<3
pytest-xdist>=2.2.1,<3
commands =
pytest --cov-report=xml --cov-report=term --cov=hyperframe {posargs}
pytest --cov-report=xml --cov-report=term --cov=hyperframe {posargs}

[testenv:pypy3]
# temporarily disable coverage testing on PyPy due to performance problems
Expand All @@ -25,7 +26,7 @@ commands = pytest {posargs}
[testenv:docs]
basepython = python3.8
deps =
sphinx==3.2.1
sphinx>=3.5.4,<4
whitelist_externals = make
changedir = {toxinidir}/docs
commands =
Expand All @@ -35,18 +36,18 @@ commands =
[testenv:lint]
basepython = python3.8
deps =
flake8==3.8.3
mypy
flake8==3.9.1
mypy==0.812
commands =
flake8 --max-complexity 10 src test
mypy --strict src
mypy --strict src/

[testenv:packaging]
basepython = python3.8
deps =
check-manifest==0.42
readme-renderer==26.0
twine==3.2.0
check-manifest==0.46
readme-renderer==29.0
twine==3.4.1
whitelist_externals = rm
commands =
rm -rf dist/
Expand Down

0 comments on commit 91eedb3

Please sign in to comment.