From c5d9f0aa109c4454228611456e94bf37ec0084e1 Mon Sep 17 00:00:00 2001 From: Simon Hawkins Date: Tue, 2 Feb 2021 11:06:04 +0000 Subject: [PATCH 1/2] test wheel build status in advance of 1.2.2 release --- .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 d5c31b2..a4f49f0 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.2.1" + - BUILD_COMMIT="1.2.x" - UNICODE_WIDTH=32 - PLAT=aarch64 - NP_BUILD_DEP="numpy==1.16.5" diff --git a/azure/posix.yml b/azure/posix.yml index b8317d0..c4b9eff 100644 --- a/azure/posix.yml +++ b/azure/posix.yml @@ -9,7 +9,7 @@ jobs: vmImage: ${{ parameters.vmImage }} variables: REPO_DIR: "pandas" - BUILD_COMMIT: "v1.2.1" + BUILD_COMMIT: "1.2.x" PLAT: "x86_64" NP_BUILD_DEP: "numpy==1.16.5" CYTHON_BUILD_DEP: "cython==0.29.21" diff --git a/azure/windows.yml b/azure/windows.yml index 4d52d71..0daa7fe 100644 --- a/azure/windows.yml +++ b/azure/windows.yml @@ -8,7 +8,7 @@ jobs: pool: vmImage: ${{ parameters.vmImage }} variables: - BUILD_COMMIT: "v1.2.1" + BUILD_COMMIT: "1.2.x" NP_BUILD_DEP: "1.16.5" CYTHON_BUILD_DEP: "0.29.21" NIGHTLY_BUILD_COMMIT: "master" From 67142a4c8300dae0b8539e7677d7b6e285ece781 Mon Sep 17 00:00:00 2001 From: Simon Hawkins Date: Sun, 7 Feb 2021 14:47:54 +0000 Subject: [PATCH 2/2] Skip test_pairwise_with_self/test_no_pairwise_with_self --- config.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config.sh b/config.sh index af50bcc..3e48b8c 100644 --- a/config.sh +++ b/config.sh @@ -33,5 +33,6 @@ function run_tests { # Skip test_float_precision_options: https://github.com/pandas-dev/pandas/issues/36429 # Skip test_rolling_var_numerical_issues: https://github.com/pandas-dev/pandas/issues/37398 # Skip test_rolling_skew_kurt_large_value_range: https://github.com/pandas-dev/pandas/issues/37398 - python -c 'import pandas; pandas.test(extra_args=["-m not clipboard", "--skip-slow", "--skip-network", "--skip-db", "-n=2", "-k not test_rolling_var_numerical_issues and not test_rolling_skew_kurt_large_value_range and not test_float_precision_options"])' + # Skip test_pairwise_with_self/test_no_pairwise_with_self: https://github.com/pandas-dev/pandas/issues/39553 + python -c 'import pandas; pandas.test(extra_args=["-m not clipboard", "--skip-slow", "--skip-network", "--skip-db", "-n=2", "-k not test_rolling_var_numerical_issues and not test_rolling_skew_kurt_large_value_range and not test_float_precision_options and not test_pairwise_with_self and not test_no_pairwise_with_self"])' }