diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e5d9413e1..94a3c3ff5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -22,7 +22,7 @@ jobs: platform: - manylinux2014_x86_64 - manylinux2014_aarch64 - pyver: [cp37-cp37m, cp38-cp38, cp39-cp39] + pyver: ['cp37-cp37m', 'cp38-cp38', 'cp39-cp39', 'cp310-cp310'] steps: - uses: actions/checkout@v2 with: @@ -58,7 +58,7 @@ jobs: runs-on: macos-latest strategy: matrix: - python_version: [3.7, 3.8, 3.9] + python_version: ['3.7', '3.8', '3.9', '3.10'] steps: - uses: actions/checkout@v2 with: diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e40dc4ca8..a04dd7cd3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,11 +15,11 @@ jobs: strategy: matrix: os: [ubuntu-20.04] - python-version: ['3.7','3.8', '3.9'] + python-version: ['3.7','3.8', '3.9', '3.10'] experimental: [false] include: - os: ubuntu-20.04 - python-version: '3.10-dev' + python-version: '3.11-dev' experimental: true steps: - name: Cancel previous @@ -47,9 +47,9 @@ jobs: run: pip install -r requirements.txt - name: Run Tests - if: matrix.python-version != '3.10-dev' + if: matrix.python-version != '3.11-dev' run: python build_scripts/ci_script.py - - name: Run Tests for python 3.10 - if: matrix.python-version == '3.10-dev' + - name: Run Tests for python 3.11 + if: matrix.python-version == '3.11-dev' run: python build_scripts/ci_script.py || exit 0 diff --git a/setup.cfg b/setup.cfg index 55cecf8e6..2a077b38c 100644 --- a/setup.cfg +++ b/setup.cfg @@ -20,13 +20,14 @@ classifiers = Programming Language :: Python :: 3.7 Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9 + Programming Language :: Python :: 3.10 Programming Language :: Python :: Implementation :: CPython Topic :: Software Development [options] zip_safe = False -python_requires = >=3.7, <3.10 +python_requires = >=3.7, <3.11 packages = find: install_requires =