Skip to content

Commit

Permalink
Add support for CPython 3.11 (#381)
Browse files Browse the repository at this point in the history
  • Loading branch information
trappitsch committed Nov 14, 2022
1 parent 891f875 commit 26090f1
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ jobs:
TOXENV: "py39-numpy"
- python-version: "3.10"
TOXENV: "py310"

- python-version: "3.11"
TOXENV: "py311"
steps:
- uses: actions/checkout@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ send, one can use the following functions to do so:
Python Version Compatibility
----------------------------

At this time, Python 3.7, 3.8, 3.9, and 3.10 are supported. Should you encounter
At this time, Python 3.7, 3.8, 3.9, 3.10, and 3.11 are supported. Should you encounter
any problems with this library that occur in one version or another, please
do not hesitate to let us know.

Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ classifiers =
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Operating System :: OS Independent
License :: OSI Approved :: GNU Affero General Public License v3
Intended Audience :: Science/Research
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py{37,38,39,310},py{37,38,39,310}-numpy,pylint
envlist = py{37,38,39,310,311},py{37,38,39,310,311}-numpy,pylint
isolated_build = true

[testenv]
Expand Down

0 comments on commit 26090f1

Please sign in to comment.