Skip to content

Commit 7118031

Browse files
committed
BUG: officially drop Python <3.12
1 parent 51c2924 commit 7118031

File tree

2 files changed

+9
-11
lines changed

2 files changed

+9
-11
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
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.10', '3.11', '3.12', '3.13']
8+
python-version: ['3.12', '3.13']
99
numpy-version: ['1.26', 'dev']
1010
exclude:
1111
- python-version: '3.13'

pyproject.toml

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,20 @@ build-backend = "setuptools.build_meta"
55
[project]
66
name = "array_api_strict"
77
dynamic = ["version"]
8-
requires-python = ">= 3.10"
8+
requires-python = ">= 3.12"
99
dependencies = ["numpy"]
10-
license = {file = "LICENSE"}
10+
license = { file = "LICENSE" }
1111
authors = [
12-
{name = "Consortium for Python Data API Standards"}
12+
{ name = "Consortium for Python Data API Standards" },
1313
]
1414
description = "A strict, minimal implementation of the Python array API standard."
1515
readme = "README.md"
1616
classifiers = [
17-
"Programming Language :: Python :: 3",
18-
"Programming Language :: Python :: 3.10",
19-
"Programming Language :: Python :: 3.11",
20-
"Programming Language :: Python :: 3.12",
21-
"Programming Language :: Python :: 3.13",
22-
"License :: OSI Approved :: BSD License",
23-
"Operating System :: OS Independent",
17+
"Programming Language :: Python :: 3",
18+
"Programming Language :: Python :: 3.12",
19+
"Programming Language :: Python :: 3.13",
20+
"License :: OSI Approved :: BSD License",
21+
"Operating System :: OS Independent",
2422
]
2523

2624
[project.urls]

0 commit comments

Comments
 (0)