Skip to content
This repository was archived by the owner on May 3, 2023. It is now read-only.

Commit faa31fc

Browse files
authored
CI: Sync Minimum Versions (#141)
1 parent dc8dd77 commit faa31fc

File tree

4 files changed

+21
-16
lines changed

4 files changed

+21
-16
lines changed

.travis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ env:
1111
- BUILD_COMMIT="v1.3.0"
1212
- UNICODE_WIDTH=32
1313
- PLAT=aarch64
14-
- NP_BUILD_DEP="numpy==1.16.5"
15-
- NP_TEST_DEP="numpy==1.16.5"
14+
- NP_BUILD_DEP="numpy==1.17.3"
15+
- NP_TEST_DEP="numpy==1.17.3"
1616
- CYTHON_BUILD_DEP="cython==0.29.21"
1717
- WHEELHOUSE_UPLOADER_USERNAME=travis-worker
1818
- TEST_DEPENDS="pytest pytest-xdist hypothesis"
@@ -25,8 +25,8 @@ jobs:
2525
- os: linux
2626
env:
2727
- MB_PYTHON_VERSION=3.7
28-
- NP_BUILD_DEP="numpy==1.16.5"
29-
- NP_TEST_DEP="numpy==1.16.5"
28+
- NP_BUILD_DEP="numpy==1.17.3"
29+
- NP_TEST_DEP="numpy==1.17.3"
3030
- os: linux
3131
env:
3232
- MB_PYTHON_VERSION=3.8

azure-pipelines.yml

Lines changed: 15 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,15 @@ jobs:
2222
py_3.7_32:
2323
PYTHON_VERSION: "3.7"
2424
PYTHON_ARCH: "x86"
25-
NP_BUILD_DEP: "1.16.5"
26-
NIGHTLY_BUILD: "true"
25+
NP_BUILD_DEP: "1.17.3"
26+
# pandas 1.4 requires py3.8+, remove this job on 1.4 release
27+
NIGHTLY_BUILD: "false"
2728
py_3.7_64:
2829
PYTHON_VERSION: "3.7"
2930
PYTHON_ARCH: "x64"
30-
NP_BUILD_DEP: "1.16.5"
31-
NIGHTLY_BUILD: "true"
31+
NP_BUILD_DEP: "1.17.3"
32+
# pandas 1.4 requires py3.8+, remove this job on 1.4 release
33+
NIGHTLY_BUILD: "false"
3234
py_3.8_32:
3335
PYTHON_VERSION: "3.8"
3436
PYTHON_ARCH: "x86"
@@ -58,12 +60,14 @@ jobs:
5860
py_3.7_32:
5961
MB_PYTHON_VERSION: "3.7"
6062
PLAT: "i686"
61-
NP_BUILD_DEP: "numpy==1.16.5"
62-
NIGHTLY_BUILD: "true"
63+
NP_BUILD_DEP: "numpy==1.17.3"
64+
# pandas 1.4 requires py3.8+, remove this job on 1.4 release
65+
NIGHTLY_BUILD: "false"
6366
py_3.7_64:
6467
MB_PYTHON_VERSION: "3.7"
65-
NP_BUILD_DEP: "numpy==1.16.5"
66-
NIGHTLY_BUILD: "true"
68+
NP_BUILD_DEP: "numpy==1.17.3"
69+
# pandas 1.4 requires py3.8+, remove this job on 1.4 release
70+
NIGHTLY_BUILD: "false"
6771
py_3.8_32:
6872
MB_PYTHON_VERSION: "3.8"
6973
PLAT: "i686"
@@ -91,8 +95,9 @@ jobs:
9195
matrix:
9296
py_3.7_64:
9397
MB_PYTHON_VERSION: "3.7"
94-
NP_BUILD_DEP: "numpy==1.16.5"
95-
NIGHTLY_BUILD: "true"
98+
NP_BUILD_DEP: "numpy==1.17.3"
99+
# pandas 1.4 requires py3.8+, remove this job on 1.4 release
100+
NIGHTLY_BUILD: "false"
96101
py_3.8_64:
97102
MB_PYTHON_VERSION: "3.8"
98103
NP_BUILD_DEP: "numpy==1.17.3"

azure/posix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
REPO_DIR: "pandas"
1212
BUILD_COMMIT: "v1.3.0"
1313
PLAT: "x86_64"
14-
NP_BUILD_DEP: "numpy==1.16.5"
14+
NP_BUILD_DEP: "numpy==1.17.3"
1515
CYTHON_BUILD_DEP: "cython==0.29.21"
1616
NIGHTLY_BUILD_COMMIT: "master"
1717
NIGHTLY_BUILD: "false"

azure/windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
vmImage: ${{ parameters.vmImage }}
1010
variables:
1111
BUILD_COMMIT: "v1.3.0"
12-
NP_BUILD_DEP: "1.16.5"
12+
NP_BUILD_DEP: "1.17.3"
1313
CYTHON_BUILD_DEP: "0.29.21"
1414
NIGHTLY_BUILD_COMMIT: "master"
1515
NIGHTLY_BUILD: "false"

0 commit comments

Comments
 (0)