Skip to content

Commit

Permalink
Add support for python 3.11 (#314)
Browse files Browse the repository at this point in the history
  • Loading branch information
asherf committed May 3, 2023
1 parent b4a0e4f commit ac7550b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "pypy3.9"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "pypy3.9"]
os: [ubuntu-latest, macos-latest, windows-latest]
exclude:
- os: macos-latest
Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ classifiers =
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: Implementation :: PyPy
Topic :: Utilities

Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tox]
min_version = 4.4
envlist =
py{37,38,39,310,py3}-{base,cryptography-only,pycryptodome-norsa,compatibility},
py{37,38,39,310,311,py3}-{base,cryptography-only,pycryptodome-norsa,compatibility},
lint
skip_missing_interpreters = True

Expand All @@ -11,6 +11,7 @@ python =
3.8: py38-{base,cryptography-only,pycryptodome-norsa,compatibility}
3.9: py39-{base,cryptography-only,pycryptodome-norsa,compatibility}
3.10: py310-{base,cryptography-only,pycryptodome-norsa,compatibility}
3.11: py311-{base,cryptography-only,pycryptodome-norsa,compatibility}
pypy-3.9: pypy3-{base,cryptography-only,pycryptodome-norsa,compatibility}

[testenv:basecommand]
Expand Down

0 comments on commit ac7550b

Please sign in to comment.