Skip to content

Commit

Permalink
build for python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
danielhrisca committed Nov 4, 2024
1 parent 4fcbe79 commit 58ed2a3
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
os: [ windows-latest, ubuntu-22.04, macos-latest ]
python-version: [ "3.9", "3.10", "3.11", "3.12" ]
python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13"]
fail-fast: false

steps:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["numpy", "setuptools", "wheel"]
requires = ["numpy<2.0", "setuptools", "wheel"]
build-backend = "setuptools.build_meta"

[tool.black]
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ def _get_ext_modules():
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
],
# Supported python versions
python_requires=">=3.9",
Expand Down
5 changes: 3 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@

[tox]
isolated_build = true
envlist = py39, py310, py311, py312, style, doc
envlist = py39, py310, py311, py312, py313, style, doc

[testenv:{py39,py310,py311,py312}]
[testenv:{py39,py310,py311,py312,py313}]
deps =
-rtest/requirements.txt
coverage
Expand Down Expand Up @@ -42,6 +42,7 @@ python =
3.10: py310
3.11: py311
3.12: py312
3.13: py313

[pytest]
python_classes =
Expand Down

0 comments on commit 58ed2a3

Please sign in to comment.