diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 703e6e7..6f34a2b 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -5,7 +5,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.10', '3.11', '3.12', '3.13'] + python-version: ['3.12', '3.13'] numpy-version: ['1.26', 'dev'] exclude: - python-version: '3.13' diff --git a/pyproject.toml b/pyproject.toml index 00d09da..8240771 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,22 +5,20 @@ build-backend = "setuptools.build_meta" [project] name = "array_api_strict" dynamic = ["version"] -requires-python = ">= 3.10" +requires-python = ">= 3.12" dependencies = ["numpy"] -license = {file = "LICENSE"} +license = { file = "LICENSE" } authors = [ - {name = "Consortium for Python Data API Standards"} + { name = "Consortium for Python Data API Standards" }, ] description = "A strict, minimal implementation of the Python array API standard." readme = "README.md" classifiers = [ - "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.10", - "Programming Language :: Python :: 3.11", - "Programming Language :: Python :: 3.12", - "Programming Language :: Python :: 3.13", - "License :: OSI Approved :: BSD License", - "Operating System :: OS Independent", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", + "License :: OSI Approved :: BSD License", + "Operating System :: OS Independent", ] [project.urls]