diff options
| -rw-r--r-- | .github/workflows/build_test.yml | 2 | ||||
| -rwxr-xr-x | setup.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/build_test.yml b/.github/workflows/build_test.yml index b88a41da4..cecb4d2af 100644 --- a/.github/workflows/build_test.yml +++ b/.github/workflows/build_test.yml @@ -56,7 +56,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.9, 3.10.0-rc.2] + python-version: ["3.9", "3.10"] steps: - uses: actions/checkout@v2 with: @@ -59,7 +59,7 @@ MAJOR, MINOR, MICRO = re.match(r'(\d+)\.(\d+)\.(\d+)', FULLVERSION).groups() VERSION = '{}.{}.{}'.format(MAJOR, MINOR, MICRO) # The first version not in the `Programming Language :: Python :: ...` classifiers above -if sys.version_info >= (3, 10): +if sys.version_info >= (3, 11): fmt = "NumPy {} may not yet support Python {}.{}." warnings.warn( fmt.format(VERSION, *sys.version_info[:2]), |
