From ab87cd41400c80b6ffb960ea6e9c4e01e1d31a01 Mon Sep 17 00:00:00 2001 From: Gil Forcada Codinachs Date: Fri, 28 Oct 2022 23:00:45 +0200 Subject: [PATCH] Support python 3.11 --- .github/workflows/testing.yml | 2 +- README.rst | 2 +- setup.py | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index adec1cf..a4a9699 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/README.rst b/README.rst index 9da0dad..16be7c2 100644 --- a/README.rst +++ b/README.rst @@ -31,7 +31,7 @@ Install with pip:: 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 Extras diff --git a/setup.py b/setup.py index 8cea4e3..ebc5e71 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',