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

Commit 5ac2535

Browse files
Merge branch 'master' into test-1.4.x
2 parents dbcff48 + 0cb5b54 commit 5ac2535

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

azure-pipelines.yml

-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ jobs:
6464
MB_PYTHON_VERSION: "3.10"
6565
MB_ML_VER: "2014"
6666
NP_BUILD_DEP: "numpy==1.21.2"
67-
CYTHON_BUILD_DEP: "cython==0.29.24"
6867
DOCKER_TEST_IMAGE: "multibuild/focal_{PLAT}"
6968
NIGHTLY_BUILD: "true"
7069

azure/windows.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ jobs:
1414
NIGHTLY_BUILD_COMMIT: "main"
1515
NIGHTLY_BUILD: "false"
1616
PYTHON_ARCH: "x64"
17-
TEST_DEPENDS: "pytest pytest-xdist hypothesis"
17+
# https://github.com/pandas-dev/pandas/issues/47332
18+
TEST_DEPENDS: "pytest pytest-xdist hypothesis tzdata"
1819
TEST_DIR: '$(Agent.WorkFolder)/tmp_for_test'
1920
strategy:
2021
matrix:

config.sh

+7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
# Define custom utilities
22
# Test for OSX with [ -n "$IS_OSX" ]
33

4+
# Adapted from MacPython/numpy-wheels
5+
# https://github.com/MacPython/numpy-wheels/blob/87b189083a5f77225c3e51895c16d11711f73987/config.sh#L4-L7
6+
if [ $(uname) == "Linux" ]; then
7+
IS_LINUX=1
8+
! git config --global --add safe.directory /io/pandas
9+
fi
10+
411
function pre_build {
512
# Any stuff that you need to do before you start building the wheels
613
# Runs in the root directory of this repository.

0 commit comments

Comments
 (0)