Skip to content

Commit ac7550b

Browse files
authored
Add support for python 3.11 (#314)
1 parent b4a0e4f commit ac7550b

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
python-version: ["3.7", "3.8", "3.9", "3.10", "pypy3.9"]
18+
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "pypy3.9"]
1919
os: [ubuntu-latest, macos-latest, windows-latest]
2020
exclude:
2121
- os: macos-latest

setup.cfg

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ classifiers =
2525
Programming Language :: Python :: 3.8
2626
Programming Language :: Python :: 3.9
2727
Programming Language :: Python :: 3.10
28+
Programming Language :: Python :: 3.11
2829
Programming Language :: Python :: Implementation :: PyPy
2930
Topic :: Utilities
3031

tox.ini

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
min_version = 4.4
33
envlist =
4-
py{37,38,39,310,py3}-{base,cryptography-only,pycryptodome-norsa,compatibility},
4+
py{37,38,39,310,311,py3}-{base,cryptography-only,pycryptodome-norsa,compatibility},
55
lint
66
skip_missing_interpreters = True
77

@@ -11,6 +11,7 @@ python =
1111
3.8: py38-{base,cryptography-only,pycryptodome-norsa,compatibility}
1212
3.9: py39-{base,cryptography-only,pycryptodome-norsa,compatibility}
1313
3.10: py310-{base,cryptography-only,pycryptodome-norsa,compatibility}
14+
3.11: py311-{base,cryptography-only,pycryptodome-norsa,compatibility}
1415
pypy-3.9: pypy3-{base,cryptography-only,pycryptodome-norsa,compatibility}
1516

1617
[testenv:basecommand]

0 commit comments

Comments
 (0)