Skip to content

Commit 0c24bd7

Browse files
xhochykszucs
authored andcommitted
ARROW-10861: [Python] Update minimal NumPy version to 1.16.6
Closes apache#8878 from xhochy/ARROW-10861 Lead-authored-by: Uwe L. Korn <[email protected]> Co-authored-by: Uwe L. Korn <[email protected]> Signed-off-by: Krisztián Szűcs <[email protected]>
1 parent 28e7388 commit 0c24bd7

File tree

6 files changed

+8
-15
lines changed

6 files changed

+8
-15
lines changed

ci/conda_env_python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ cython
2222
cloudpickle
2323
fsspec
2424
hypothesis
25-
numpy>=1.14
25+
numpy>=1.16.6
2626
pytest
2727
pytest-faulthandler
2828
pytest-lazy-fixture

python/pyproject.toml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,8 @@
1818
[build-system]
1919
requires = [
2020
"cython >= 0.29",
21-
"numpy==1.14.5; python_version<'3.7'",
22-
"numpy==1.16.0; python_version=='3.7'",
23-
"numpy==1.17.3; python_version=='3.8'",
24-
"numpy==1.19.3; python_version>='3.9'",
21+
"numpy==1.16.6; python_version<'3.9'",
22+
"numpy==1.19.4; python_version>='3.9'",
2523
"setuptools",
2624
"setuptools_scm",
2725
"wheel"

python/requirements-build.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
cython>=0.29
2-
numpy>=1.14
2+
numpy>=1.16.6
33
setuptools>=38.6.0
44
setuptools_scm
Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
cython>=0.29.11
2-
numpy==1.14.5; python_version < "3.7"
3-
numpy==1.16.0; python_version == "3.7"
4-
numpy==1.17.3; python_version == "3.8"
5-
numpy==1.19.3; python_version >= "3.9"
2+
numpy==1.16.6; python_version < "3.9"
3+
numpy==1.19.4; python_version >= "3.9"
64
setuptools_scm
75
wheel

python/requirements-wheel-test.txt

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
11
cffi
22
cython
33
hypothesis
4-
numpy==1.14.5; python_version < "3.7"
5-
numpy==1.16.0; python_version == "3.7"
6-
numpy==1.17.3; python_version == "3.8"
7-
numpy==1.19.3; python_version >= "3.9"
4+
numpy==1.19.4
85
pandas<1.1.0; python_version < "3.8"
96
pandas; python_version >= "3.8"
107
pickle5; python_version == "3.6" or python_version == "3.7"

python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -572,7 +572,7 @@ def has_ext_modules(foo):
572572

573573

574574
install_requires = (
575-
'numpy >= 1.14',
575+
'numpy >= 1.16.6',
576576
)
577577

578578

0 commit comments

Comments
 (0)