1 Allow newer Numpy versions (#1447) · SciCompMod/memilio@9ff64cf · GitHub
Skip to content

Commit 9ff64cf

Browse files
Allow newer Numpy versions (#1447)
Co-authored-by: reneSchm <49305466+reneSchm@users.noreply.github.com>
1 parent 092c0e0 commit 9ff64cf

7 files changed

Lines changed: 11 additions & 8 deletions

File tree

docs/source/python/m-epidata.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Required python packages:
1212
* pandas>=2.0.0
1313
* matplotlib
1414
* tables
15-
* numpy>=1.22,<1.25
15+
* numpy>=1.22, !=1.25.*
1616
* pyarrow
1717
* openpyxl
1818
* xlrd

docs/source/python/m-plot.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Required python packages:
1515

1616
- pandas>=1.2.2
1717
- matplotlib
18-
- numpy>=1.22,<1.25
18+
- numpy>=1.22, !=1.25.*
1919
- openpyxl
2020
- xlrd
2121
- requests

docs/source/python/m-surrogate.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Dependencies
1616
Required python packages:
1717

1818
- pandas >= 1.2.2
19-
- numpy >= 1.22, < 1.25
19+
- numpy >= 1.22, !=1.25.*
2020
- tensorflow
2121
- matplotlib
2222
- scikit-learn

pycode/memilio-epidata/pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ dependencies = [
1818
"pyarrow",
1919
"matplotlib",
2020
"tables",
21-
"numpy>=1.22,<1.25",
21+
# smaller numpy versions cause a security issue, 1.25 does not work together with pyfakefs
22+
"numpy>=1.22,!=1.25.*",
2223
"openpyxl",
2324
"xlrd",
2425
"xlsxwriter",

pycode/memilio-plot/pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ maintainers = [
1616
dependencies = [
1717
"pandas>=1.2.2",
1818
"matplotlib",
19-
"numpy>=1.22,<1.25",
19+
# smaller numpy versions cause a security issue, 1.25 does not work together with pyfakefs
20+
"numpy>=1.22,!=1.25.*",
2021
"openpyxl",
2122
"xlrd",
2223
"requests",

pycode/memilio-simulation/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ maintainers = [
1818
{ email = "martin.kuehn@dlr.de" }
1919
]
2020
dependencies = [
21-
# smaller numpy versions cause a security issue, 1.25 breaks testing with pyfakefs
22-
"numpy>=1.22,<1.25",
21+
# smaller numpy versions cause a security issue, 1.25 does not work together with pyfakefs
22+
"numpy>=1.22,!=1.25.*",
2323
# smaller pandas versions contain a bug that sometimes prevents reading
2424
"pandas>=2.0.0"
2525
]

pycode/memilio-surrogatemodel/pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ maintainers = [
1616
dependencies = [
1717
"pandas>=1.2.2",
1818
"progress",
19-
"numpy>=1.22,<1.25",
19+
# smaller numpy versions cause a security issue, 1.25 does not work together with pyfakefs
20+
"numpy>=1.22,!=1.25.*",
2021
"tensorflow",
2122
"matplotlib",
2223
"scikit-learn",

0 commit comments

Comments
 (0)