Skip to content

Commit

Permalink
Merge pull request #1264 from python-hyper/py310
Browse files Browse the repository at this point in the history
support Python 3.10
  • Loading branch information
Kriechi committed Oct 5, 2021
2 parents a8fe33b + 2c3a33a commit 54d8eb1
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/ci.yml
Expand Up @@ -13,10 +13,11 @@ jobs:
max-parallel: 5
matrix:
python-version:
- 3.6
- 3.7
- 3.8
- 3.9
- "3.6"
- "3.7"
- "3.8"
- "3.9"
- "3.10"
- pypy3

steps:
Expand Down
1 change: 1 addition & 0 deletions setup.py
Expand Up @@ -43,6 +43,7 @@
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
],
Expand Down
2 changes: 1 addition & 1 deletion src/h2/config.py
Expand Up @@ -55,7 +55,7 @@ class OutputLogger:
"""
A Logger object that prints to stderr or any other file-like object.
This class is provided for convinience and not part of the stable API.
This class is provided for convenience and not part of the stable API.
:param file: A file-like object passed to the print function.
Defaults to ``sys.stderr``.
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
@@ -1,12 +1,13 @@
[tox]
envlist = py36, py37, py38, py39, pypy3, lint, docs, packaging
envlist = py36, py37, py38, py39, py310, pypy3, lint, docs, packaging

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

[testenv]
Expand Down

0 comments on commit 54d8eb1

Please sign in to comment.