Skip to content

Commit 54d8eb1

Browse files
authored
Merge pull request #1264 from python-hyper/py310
support Python 3.10
2 parents a8fe33b + 2c3a33a commit 54d8eb1

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

.github/workflows/ci.yml

+5-4
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,11 @@ jobs:
1313
max-parallel: 5
1414
matrix:
1515
python-version:
16-
- 3.6
17-
- 3.7
18-
- 3.8
19-
- 3.9
16+
- "3.6"
17+
- "3.7"
18+
- "3.8"
19+
- "3.9"
20+
- "3.10"
2021
- pypy3
2122

2223
steps:

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@
4343
'Programming Language :: Python :: 3.7',
4444
'Programming Language :: Python :: 3.8',
4545
'Programming Language :: Python :: 3.9',
46+
'Programming Language :: Python :: 3.10',
4647
'Programming Language :: Python :: Implementation :: CPython',
4748
'Programming Language :: Python :: Implementation :: PyPy',
4849
],

src/h2/config.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ class OutputLogger:
5555
"""
5656
A Logger object that prints to stderr or any other file-like object.
5757
58-
This class is provided for convinience and not part of the stable API.
58+
This class is provided for convenience and not part of the stable API.
5959
6060
:param file: A file-like object passed to the print function.
6161
Defaults to ``sys.stderr``.

tox.ini

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
[tox]
2-
envlist = py36, py37, py38, py39, pypy3, lint, docs, packaging
2+
envlist = py36, py37, py38, py39, py310, pypy3, lint, docs, packaging
33

44
[gh-actions]
55
python =
66
3.6: py36
77
3.7: py37
88
3.8: py38
99
3.9: py39, lint, docs, packaging, h2spec
10+
3.10: py310
1011
pypy3: pypy3
1112

1213
[testenv]

0 commit comments

Comments
 (0)