Skip to content

Commit 9d2620b

Browse files
authored
Add python 3.11 to supported versions (hardbyte#1423)
1 parent fb892d6 commit 9d2620b

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/build.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
"3.8",
1919
"3.9",
2020
"3.10",
21-
"3.11.0-alpha - 3.11.0",
21+
"3.11",
2222
"pypy-3.7",
2323
"pypy-3.8",
2424
"pypy-3.9",
@@ -67,6 +67,9 @@ jobs:
6767
- name: mypy 3.10
6868
run: |
6969
mypy --python-version 3.10 .
70+
- name: mypy 3.11
71+
run: |
72+
mypy --python-version 3.11 .
7073
- name: pylint
7174
run: |
7275
pylint --rcfile=.pylintrc \

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@
5252
"Programming Language :: Python :: 3.8",
5353
"Programming Language :: Python :: 3.9",
5454
"Programming Language :: Python :: 3.10",
55+
"Programming Language :: Python :: 3.11",
5556
"Natural Language :: English",
5657
"Programming Language :: Python :: Implementation :: CPython",
5758
"Programming Language :: Python :: Implementation :: PyPy",

0 commit comments

Comments
 (0)