Skip to content

Commit 281312e

Browse files
committed
switching to Numpy 2 as the default except for Python 3.8
1 parent 4770dba commit 281312e

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

.github/workflows/main.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
python-version: [3.8, 3.9, "3.10", "3.11", "3.12"]
15+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
1616
architecture: ["x64"]
1717
include:
18-
- python-version: "3.11"
18+
- python-version: "3.8"
1919
numpy-version: "1.26.4"
2020
steps:
2121
- uses: actions/checkout@v2

requirements-dev.txt

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
-r requirements.txt
22
-r requirements-cli.txt
33
bump2version==1.0.1
4-
jsonpickle==3.0.3
5-
coverage==7.4.4
4+
jsonpickle==3.2.1
5+
coverage==7.5.3
66
ipdb==0.13.13
7-
numpy>=1.24.4,<2.0.0
8-
pytest==8.1.1
7+
numpy==2.0.0
8+
pytest==8.2.2
99
pytest-cov==5.0.0
1010
python-dotenv==1.0.1
11-
watchdog>=2.2.0
12-
Sphinx==6.2.1 # We use the html style that is not supported in Sphinx 7 anymore.
13-
sphinx-sitemap==2.5.1
14-
sphinxemoji>=0.2.0
15-
flake8==7.0.0
11+
watchdog>=4.0.1
12+
Sphinx==7.3.7 # We use the html style that is not supported in Sphinx 7 anymore.
13+
sphinx-sitemap==2.6.0
14+
sphinxemoji>=0.3.1
15+
flake8==7.1.0
1616
python-dateutil==2.9.0.post0
17-
orjson==3.10.0
17+
orjson==3.10.5
1818
wheel==0.43.0
1919
tomli==2.0.1
2020
tomli-w==1.0.0
21-
pydantic==2.6.4
21+
pydantic==2.7.4
2222
pytest-benchmark==4.0.0

0 commit comments

Comments
 (0)