File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ Dependencies
1616Required 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
Original file line number Diff line number Diff 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" ,
Original file line number Diff line number Diff line change @@ -16,7 +16,8 @@ maintainers = [
1616dependencies = [
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" ,
Original file line number Diff line number Diff line change @@ -18,8 +18,8 @@ maintainers = [
1818 { email = " martin.kuehn@dlr.de" }
1919]
2020dependencies = [
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]
Original file line number Diff line number Diff line change @@ -16,7 +16,8 @@ maintainers = [
1616dependencies = [
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" ,
You can’t perform that action at this time.
0 commit comments