Skip to content

Commit

Permalink
MAINT: Compatibility to Python 3.13 (#6)
Browse files Browse the repository at this point in the history
* Update tests.yml to allow manual execution

* typo

* Set up first regression tests

* remove scipy version requirement -> Python>=3.10 compiles against scipy>=1.14.1 others compile against old version
install requires should take care of making sure the corresponding scipy version is installed

* syntax of the dependency specification

* TEST: Increase tolerance for regressions in incgamma, rename testcases

* TEST: tolerance for problematic cases of incgamma increased to 1e-10

* TEST: Switch to numpy regressions to handle complex numbers properly

* TEST: use old numpy for doctests (format difference) and install gmsh

* MAINT: only deploy coverage report for one python version (3.11)

* TEST: format output in doctests to avoid problems with rounding error. Install dependencies for gmsh

* MAINT: Forgot to update package index

* MAINT: run CI on pull requests

* Update tests to include python 3.13
  • Loading branch information
jan-david-fischbach authored Oct 28, 2024
1 parent 9b5c6e4 commit 54def80
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
max-parallel: 3
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
permissions:
pull-requests: write
contents: write
Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ classifiers =
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
Programming Language :: Cython
Programming Language :: Python :: Implementation :: CPython
Topic :: Scientific/Engineering
Expand Down

0 comments on commit 54def80

Please sign in to comment.