Skip to content

Commit 5a87c55

Browse files
authored
Add support for Python 3.10 (#248)
1 parent beb6f26 commit 5a87c55

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
needs: lint
5858
strategy:
5959
matrix:
60-
pyver: [3.6, 3.7, 3.8, 3.9]
60+
pyver: ["3.6", "3.7", "3.8", "3.9", "3.10"]
6161
os: [ubuntu, macos, windows]
6262
include:
6363
- pyver: pypy3

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,13 @@ def read(name):
3535
"License :: OSI Approved :: Apache Software License",
3636
"Intended Audience :: Developers",
3737
"Programming Language :: Python",
38+
"Programming Language :: Python :: 3 :: Only",
3839
"Programming Language :: Python :: 3",
3940
"Programming Language :: Python :: 3.6",
4041
"Programming Language :: Python :: 3.7",
4142
"Programming Language :: Python :: 3.8",
4243
"Programming Language :: Python :: 3.9",
44+
"Programming Language :: Python :: 3.10",
4345
"Topic :: Internet :: WWW/HTTP",
4446
"Framework :: AsyncIO",
4547
],

0 commit comments

Comments
 (0)