Skip to content

Commit a071cfe

Browse files
committed
Test on newer Python versions
1 parent 8bf4d5d commit a071cfe

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
python: ['3.6', '3.7', '3.8', '3.9']
16+
python: ['3.7', '3.8', '3.9', '3.10', '3.11']
1717
steps:
1818
- name: Checkout
1919
uses: actions/checkout@v2
@@ -35,7 +35,7 @@ jobs:
3535
strategy:
3636
fail-fast: false
3737
matrix:
38-
python: ['pypy-3.6', '3.6', '3.7', '3.8', '3.9', '3.8-dev', '3.9-dev']
38+
python: ['pypy-3.7', '3.7', 'pypy-3.8', '3.8', 'pypy-3.9', '3.9', '3.10', '3.11']
3939
check_formatting: ['0']
4040
check_docs: ['0']
4141
extra_name: ['']
@@ -74,7 +74,7 @@ jobs:
7474
strategy:
7575
fail-fast: false
7676
matrix:
77-
python: ['3.6', '3.7', '3.8', '3.9']
77+
python: ['3.7', '3.8', '3.9', '3.10', '3.11']
7878
steps:
7979
- name: Checkout
8080
uses: actions/checkout@v2

setup.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,19 @@
2828
'testing',
2929
'trio',
3030
],
31-
python_requires=">=3.6",
31+
python_requires=">=3.7",
3232
classifiers=[
3333
"License :: OSI Approved :: MIT License",
3434
"License :: OSI Approved :: Apache Software License",
3535
"Operating System :: POSIX :: Linux",
3636
"Operating System :: MacOS :: MacOS X",
3737
"Operating System :: Microsoft :: Windows",
3838
"Programming Language :: Python :: 3 :: Only",
39+
"Programming Language :: Python :: 3.7",
40+
"Programming Language :: Python :: 3.8",
41+
"Programming Language :: Python :: 3.9",
42+
"Programming Language :: Python :: 3.10",
43+
"Programming Language :: Python :: 3.11",
3944
"Programming Language :: Python :: Implementation :: CPython",
4045
"Programming Language :: Python :: Implementation :: PyPy",
4146
"Topic :: System :: Networking",

0 commit comments

Comments
 (0)