Skip to content

Commit

Permalink
NumPy 2.1 requires Python >= 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
asmeurer committed Nov 8, 2024
1 parent 0129dc4 commit 54ce945
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/array-api-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12']
python-version: ['3.10', '3.11', '3.12']
numpy-version: ['2.1', 'dev']

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12']
python-version: ['3.10', '3.11', '3.12']
numpy-version: ['2.1', 'dev']
fail-fast: true
steps:
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,15 @@
long_description_content_type="text/markdown",
url="https://data-apis.org/array-api-strict/",
license="MIT",
python_requires=">=3.9",
python_requires=">=3.10",
install_requires=["numpy>=2.1"],
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
],
Expand Down

0 comments on commit 54ce945

Please sign in to comment.