diff --git a/.github/workflows/run-test.yml b/.github/workflows/run-test.yml index 455dc4b3..b5781962 100644 --- a/.github/workflows/run-test.yml +++ b/.github/workflows/run-test.yml @@ -19,7 +19,7 @@ jobs: tests: strategy: matrix: - python-version: [3.6, 3.7, 3.8, 3.9] + python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"] os: [ubuntu-latest, windows-latest, macos-latest] runs-on: ${{ matrix.os }} steps: diff --git a/.github/workflows/upload-to-pypi.yml b/.github/workflows/upload-to-pypi.yml index d86d35b9..2b84caa9 100644 --- a/.github/workflows/upload-to-pypi.yml +++ b/.github/workflows/upload-to-pypi.yml @@ -52,7 +52,7 @@ jobs: run: python -m cibuildwheel --output-dir wheelhouse env: # Disable explicitly building PyPI wheels for specific configurations - CIBW_SKIP: cp310-* pp* cp{38,39,310}-manylinux_i686 *-musllinux_* cp310-win32 + CIBW_SKIP: pp* cp{38,39,310}-manylinux_i686 *-musllinux_* cp310-win32 CIBW_PRERELEASE_PYTHONS: False # Manually force a version (and avoid building local wheels) CIBW_ENVIRONMENT: "SETUPTOOLS_SCM_PRETEND_VERSION=${{ github.event.inputs.overrideVersion }}"