Skip to content

Commit 9e8a259

Browse files
authored
feat: Add Python 3.11 to the testing (#1059)
1 parent 4288aa6 commit 9e8a259

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/test-and-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
timeout-minutes: 20
1818
strategy:
1919
matrix:
20-
python-version: [ '2.7', '3.5', '3.6', '3.7', '3.8', '3.9', '3.10' ]
20+
python-version: [ '2.7', '3.5', '3.6', '3.7', '3.8', '3.9', '3.10', '3.11' ]
2121
env:
2222
DOCKER_LOGIN: ${{ secrets.DOCKER_USERNAME && secrets.DOCKER_AUTH_TOKEN }}
2323
steps:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,12 @@ def getRequires():
3434
classifiers=[
3535
'Programming Language :: Python :: 2.7',
3636
'Programming Language :: Python :: 3',
37-
'Programming Language :: Python :: 3.4',
3837
'Programming Language :: Python :: 3.5',
3938
'Programming Language :: Python :: 3.6',
4039
'Programming Language :: Python :: 3.7',
4140
'Programming Language :: Python :: 3.8',
4241
'Programming Language :: Python :: 3.9',
4342
'Programming Language :: Python :: 3.10',
43+
'Programming Language :: Python :: 3.11',
4444
]
4545
)

0 commit comments

Comments
 (0)