diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 13c1746..d0c5e4e 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.10", 3.9, 3.8, 3.7, pypy-3.9] + python-version: ["3.11", "3.10", 3.9, 3.8, 3.7, pypy-3.9] steps: - uses: actions/checkout@v3 - name: Set up Python diff --git a/CHANGES.rst b/CHANGES.rst index c463b90..3cf72d4 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -6,7 +6,7 @@ Changelog 2.0.1 (unreleased) ------------------ -- Add official support for python 3.10. [gforcada] +- Add official support for python 3.10 and 3.11. [gforcada] - Update options handling. [gforcada] diff --git a/README.rst b/README.rst index 0852443..5bc0b76 100644 --- a/README.rst +++ b/README.rst @@ -83,7 +83,7 @@ to ignore a custom list of builtins:: Requirements ------------ -- Python 3.7, 3.8, 3.9, 3.10 and pypy3 +- Python 3.7, 3.8, 3.9, 3.10, 3.11, and pypy3 - flake8 License diff --git a/setup.py b/setup.py index d637839..a812c47 100644 --- a/setup.py +++ b/setup.py @@ -35,6 +35,7 @@ def read_file(filename): 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', + 'Programming Language :: Python :: 3.11', 'Programming Language :: Python :: Implementation :: CPython', 'Programming Language :: Python :: Implementation :: PyPy', 'Topic :: Software Development',