From 919c5419627cdb7d505e64c66ab4fdc72748e05a Mon Sep 17 00:00:00 2001 From: Simon Hawkins Date: Sun, 25 Oct 2020 09:23:09 +0000 Subject: [PATCH 1/5] test wheel build status in advance of 1.1.4 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 a243227..d3b859b 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.1.3" + - BUILD_COMMIT="1.1.x" - UNICODE_WIDTH=32 - PLAT=aarch64 - NP_BUILD_DEP="numpy==1.13.3" diff --git a/azure/posix.yml b/azure/posix.yml index 95c5730..47a8c6f 100644 --- a/azure/posix.yml +++ b/azure/posix.yml @@ -9,7 +9,7 @@ jobs: vmImage: ${{ parameters.vmImage }} variables: REPO_DIR: "pandas" - BUILD_COMMIT: "v1.1.3" + BUILD_COMMIT: "1.1.x" PLAT: "x86_64" NP_BUILD_DEP: "numpy==1.13.3" CYTHON_BUILD_DEP: "cython==0.29.21" diff --git a/azure/windows.yml b/azure/windows.yml index a4d18d2..a610920 100644 --- a/azure/windows.yml +++ b/azure/windows.yml @@ -8,7 +8,7 @@ jobs: pool: vmImage: ${{ parameters.vmImage }} variables: - BUILD_COMMIT: "v1.1.3" + BUILD_COMMIT: "1.1.x" NP_BUILD_DEP: "1.13.3" CYTHON_BUILD_DEP: "0.29.21" NIGHTLY_BUILD_COMMIT: "master" From fb5412ee1ee01e17dc1f558e7fb5ba7835c71c42 Mon Sep 17 00:00:00 2001 From: Simon Hawkins Date: Tue, 27 Oct 2020 15:21:45 +0000 Subject: [PATCH 2/5] empty commit From 54a6589ba155994dff29e7071425b75581721231 Mon Sep 17 00:00:00 2001 From: Simon Hawkins Date: Tue, 27 Oct 2020 18:55:39 +0000 Subject: [PATCH 3/5] remove skip for test_missing_required_dependencies --- config.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/config.sh b/config.sh index ae47601..e98afa2 100644 --- a/config.sh +++ b/config.sh @@ -31,7 +31,6 @@ function run_tests { pip list python -c 'import pandas; pandas.show_versions()' # Skip test_maybe_promote_int_with_int: https://github.com/pandas-dev/pandas/issues/31856 - # test_missing_required_dependencies: https://github.com/pandas-dev/pandas/issues/33999 # TestPandasContainer for 3.7.0 failure - python -c 'import sys; import pandas; pandas.test(extra_args=["-m not clipboard", "--skip-slow", "--skip-network", "--skip-db", "-n=2", "-k not test_maybe_promote_int_with_int and not test_missing_required_dependency and not test_file_descriptor_leak"]) if sys.version_info[:2] != (3, 7) else None' + python -c 'import sys; import pandas; pandas.test(extra_args=["-m not clipboard", "--skip-slow", "--skip-network", "--skip-db", "-n=2", "-k not test_maybe_promote_int_with_int and not test_file_descriptor_leak"]) if sys.version_info[:2] != (3, 7) else None' } From 08908539e08f81cfdea829435397708b21ae378b Mon Sep 17 00:00:00 2001 From: Simon Hawkins Date: Thu, 29 Oct 2020 13:34:11 +0000 Subject: [PATCH 4/5] temporary skip test_slice_irregular_datetime_index_with_nan to be reverted after https://github.com/pandas-dev/pandas/pull/37473 backported --- config.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.sh b/config.sh index e98afa2..4e9d48f 100644 --- a/config.sh +++ b/config.sh @@ -32,5 +32,5 @@ function run_tests { python -c 'import pandas; pandas.show_versions()' # Skip test_maybe_promote_int_with_int: https://github.com/pandas-dev/pandas/issues/31856 # TestPandasContainer for 3.7.0 failure - python -c 'import sys; import pandas; pandas.test(extra_args=["-m not clipboard", "--skip-slow", "--skip-network", "--skip-db", "-n=2", "-k not test_maybe_promote_int_with_int and not test_file_descriptor_leak"]) if sys.version_info[:2] != (3, 7) else None' + python -c 'import sys; import pandas; pandas.test(extra_args=["-m not clipboard", "--skip-slow", "--skip-network", "--skip-db", "-n=2", "-k not test_maybe_promote_int_with_int and not test_file_descriptor_leak and not test_slice_irregular_datetime_index_with_nan"]) if sys.version_info[:2] != (3, 7) else None' } From 52b03d58c22ba084d96be96c0b001bd591d191ec Mon Sep 17 00:00:00 2001 From: Simon Hawkins Date: Fri, 30 Oct 2020 11:55:36 +0000 Subject: [PATCH 5/5] Revert "temporary skip test_slice_irregular_datetime_index_with_nan" This reverts commit 08908539e08f81cfdea829435397708b21ae378b. --- config.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.sh b/config.sh index 4e9d48f..e98afa2 100644 --- a/config.sh +++ b/config.sh @@ -32,5 +32,5 @@ function run_tests { python -c 'import pandas; pandas.show_versions()' # Skip test_maybe_promote_int_with_int: https://github.com/pandas-dev/pandas/issues/31856 # TestPandasContainer for 3.7.0 failure - python -c 'import sys; import pandas; pandas.test(extra_args=["-m not clipboard", "--skip-slow", "--skip-network", "--skip-db", "-n=2", "-k not test_maybe_promote_int_with_int and not test_file_descriptor_leak and not test_slice_irregular_datetime_index_with_nan"]) if sys.version_info[:2] != (3, 7) else None' + python -c 'import sys; import pandas; pandas.test(extra_args=["-m not clipboard", "--skip-slow", "--skip-network", "--skip-db", "-n=2", "-k not test_maybe_promote_int_with_int and not test_file_descriptor_leak"]) if sys.version_info[:2] != (3, 7) else None' }