Skip to content

Commit 54ce945

Browse files
committed
NumPy 2.1 requires Python >= 3.10
1 parent 0129dc4 commit 54ce945

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

Diff for: .github/workflows/array-api-tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
python-version: ['3.9', '3.10', '3.11', '3.12']
14+
python-version: ['3.10', '3.11', '3.12']
1515
numpy-version: ['2.1', 'dev']
1616

1717
steps:

Diff for: .github/workflows/tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
runs-on: ubuntu-latest
66
strategy:
77
matrix:
8-
python-version: ['3.9', '3.10', '3.11', '3.12']
8+
python-version: ['3.10', '3.11', '3.12']
99
numpy-version: ['2.1', 'dev']
1010
fail-fast: true
1111
steps:

Diff for: setup.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,15 @@
1515
long_description_content_type="text/markdown",
1616
url="https://data-apis.org/array-api-strict/",
1717
license="MIT",
18-
python_requires=">=3.9",
18+
python_requires=">=3.10",
1919
install_requires=["numpy>=2.1"],
2020
classifiers=[
2121
"Programming Language :: Python :: 3",
22-
"Programming Language :: Python :: 3.9",
2322
"Programming Language :: Python :: 3.10",
2423
"Programming Language :: Python :: 3.11",
2524
"Programming Language :: Python :: 3.12",
25+
"Programming Language :: Python :: 3.13",
26+
"Intended Audience :: Developers",
2627
"License :: OSI Approved :: BSD License",
2728
"Operating System :: OS Independent",
2829
],

0 commit comments

Comments
 (0)