diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index fc790467..dbd67c89 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,7 +12,7 @@ jobs: # cibuildwheel builds linux wheels inside a manylinux container # it also takes care of procuring the correct python version for us os: [ubuntu-latest, windows-latest, macos-latest] - python-version: [36, 37, 38, 39, 310] + python-version: [36, 37, 38, 39, 310, 311] steps: - uses: actions/checkout@v2 - uses: actions/setup-python@v2 diff --git a/setup.py b/setup.py index bd245a4d..e1c709b8 100644 --- a/setup.py +++ b/setup.py @@ -121,6 +121,7 @@ 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', + 'Programming Language :: Python :: 3.11', 'Topic :: Software Development', ], python_requires=">=3.6",