Skip to content

Commit 940843a

Browse files
committed
feat(deps): drop numpy pin to v<2.0
1 parent 9410aa5 commit 940843a

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

.github/workflows/ci_versions.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: [ubuntu-latest, macos-latest, ubuntu-24.04 ]
1818
exclude:
1919
- runs-on: macos-latest
20-
python-version: "3.9"
20+
python-version: ["3.9"]
2121

2222
steps:
2323
- uses: actions/checkout@v4
@@ -50,4 +50,4 @@ jobs:
5050
run: |
5151
omv list -V # list installed engines
5252
env
53-
pip list
53+
pip list

setup.cfg

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,17 @@ classifiers=
1313
License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
1414
Natural Language :: English
1515
Operating System :: OS Independent
16-
Programming Language :: Python :: 3.7
17-
Programming Language :: Python :: 3.8
1816
Programming Language :: Python :: 3.9
1917
Programming Language :: Python :: 3.10
2018
Programming Language :: Python :: 3.11
2119
Programming Language :: Python :: 3.12
20+
Programming Language :: Python :: 3.13
2221
Topic :: Scientific/Engineering
2322

2423
[options]
2524
install_requires =
2625
PyYAML
27-
numpy<2.0.0 # Due to other packages (e.g. tables) not working yet with numpy v2
26+
numpy
2827
pyrx
2928
pathlib; python_version<'3.4'
3029
docopt

0 commit comments

Comments
 (0)