Skip to content

Commit f5cceaf

Browse files
Numpy version fix (#1070)
* Downgrade build version and set test version of numpy * Upgrade version to 1.20 for python<=3.9 * Set base numpy to be 1.19.* for build * Set numpy for future python version * Enabling full versions and >=3.10 python Co-authored-by: Nikolay Petrov <[email protected]>
1 parent 9d0a05b commit f5cceaf

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

requirements-dev.txt

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
Cython==0.29.24 ; python_version <= '3.9'
22
Cython==0.29.25 ; python_version >= '3.10'
33
Jinja2==3.0.3
4-
numpy==1.19.5 ; python_version == '3.6'
5-
numpy==1.21.6 ; python_version == '3.7'
6-
numpy==1.22.3 ; python_version >= '3.8'
4+
numpy==1.19.5 ; python_version <= '3.9'
5+
numpy==1.21.6 ; python_version >= '3.10'
76
pybind11==2.8.0
87
cmake==3.21.3

requirements-test.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,5 @@ scikit-learn==0.24 ; python_version == '3.6'
44
pandas==1.1.5 ; python_version <= '3.6'
55
pandas==1.2.2 ; python_version >= '3.7' and python_version < "3.10"
66
pandas==1.4.0 ; python_version >= '3.10'
7+
numpy>=1.19.5 ; python_version <= '3.9'
8+
numpy>=1.21.6 ; python_version >= '3.10'

0 commit comments

Comments
 (0)