Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.10', '3.11', '3.12', '3.13']
python-version: ['3.12', '3.13']
numpy-version: ['1.26', 'dev']
exclude:
- python-version: '3.13'
Expand Down
18 changes: 8 additions & 10 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
Loading