From 763f679c94eb7103f06be4796a7f1420df66cec5 Mon Sep 17 00:00:00 2001 From: Simon Hawkins Date: Mon, 13 Jun 2022 15:38:24 +0000 Subject: [PATCH 1/3] first step: just replicate failures on nightly --- .travis.yml | 2 +- azure/posix.yml | 2 +- azure/windows.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 7af9c0f..7aafac7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,7 +8,7 @@ env: global: - REPO_DIR=pandas # on release change this to a version - - BUILD_COMMIT="v1.4.2" + - BUILD_COMMIT="main" - UNICODE_WIDTH=32 - PLAT=aarch64 - NP_BUILD_DEP="numpy==1.17.3" diff --git a/azure/posix.yml b/azure/posix.yml index 128deb2..4e44bbc 100644 --- a/azure/posix.yml +++ b/azure/posix.yml @@ -9,7 +9,7 @@ jobs: vmImage: ${{ parameters.vmImage }} variables: REPO_DIR: "pandas" - BUILD_COMMIT: "v1.4.2" + BUILD_COMMIT: "main" PLAT: "x86_64" NP_BUILD_DEP: "numpy==1.17.3" CYTHON_BUILD_DEP: "cython==0.29.30" diff --git a/azure/windows.yml b/azure/windows.yml index 0697bdc..f779f5c 100644 --- a/azure/windows.yml +++ b/azure/windows.yml @@ -8,7 +8,7 @@ jobs: pool: vmImage: ${{ parameters.vmImage }} variables: - BUILD_COMMIT: "v1.4.2" + BUILD_COMMIT: "main" NP_BUILD_DEP: "1.17.3" CYTHON_BUILD_DEP: "0.29.30" NIGHTLY_BUILD_COMMIT: "main" From 3e06e704428b544f625837d78a305bf70dc0179f Mon Sep 17 00:00:00 2001 From: Simon Hawkins Date: Mon, 13 Jun 2022 18:09:34 +0000 Subject: [PATCH 2/3] add tzdata to TEST_DEPENDS for windows --- azure/windows.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/azure/windows.yml b/azure/windows.yml index f779f5c..4733367 100644 --- a/azure/windows.yml +++ b/azure/windows.yml @@ -14,7 +14,8 @@ jobs: NIGHTLY_BUILD_COMMIT: "main" NIGHTLY_BUILD: "false" PYTHON_ARCH: "x64" - TEST_DEPENDS: "pytest pytest-xdist hypothesis" + # https://github.com/pandas-dev/pandas/issues/47332 + TEST_DEPENDS: "pytest pytest-xdist hypothesis tzdata" TEST_DIR: '$(Agent.WorkFolder)/tmp_for_test' strategy: matrix: From ec1d058c91cc5839822fb07c49fab64f903670ee Mon Sep 17 00:00:00 2001 From: Simon Hawkins Date: Mon, 13 Jun 2022 19:34:18 +0000 Subject: [PATCH 3/3] undo changes to BUILD_COMMIT --- .travis.yml | 2 +- azure/posix.yml | 2 +- azure/windows.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 7aafac7..7af9c0f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,7 +8,7 @@ env: global: - REPO_DIR=pandas # on release change this to a version - - BUILD_COMMIT="main" + - BUILD_COMMIT="v1.4.2" - UNICODE_WIDTH=32 - PLAT=aarch64 - NP_BUILD_DEP="numpy==1.17.3" diff --git a/azure/posix.yml b/azure/posix.yml index 4e44bbc..128deb2 100644 --- a/azure/posix.yml +++ b/azure/posix.yml @@ -9,7 +9,7 @@ jobs: vmImage: ${{ parameters.vmImage }} variables: REPO_DIR: "pandas" - BUILD_COMMIT: "main" + BUILD_COMMIT: "v1.4.2" PLAT: "x86_64" NP_BUILD_DEP: "numpy==1.17.3" CYTHON_BUILD_DEP: "cython==0.29.30" diff --git a/azure/windows.yml b/azure/windows.yml index 4733367..2120059 100644 --- a/azure/windows.yml +++ b/azure/windows.yml @@ -8,7 +8,7 @@ jobs: pool: vmImage: ${{ parameters.vmImage }} variables: - BUILD_COMMIT: "main" + BUILD_COMMIT: "v1.4.2" NP_BUILD_DEP: "1.17.3" CYTHON_BUILD_DEP: "0.29.30" NIGHTLY_BUILD_COMMIT: "main"