From 5543626b261f5cb55cebfb300c156718c1796ce3 Mon Sep 17 00:00:00 2001 From: Simon Hawkins Date: Thu, 20 Aug 2020 20:57:09 +0100 Subject: [PATCH] RLS v1.1.1 (#96) * RLS v1.1.1 --- azure/posix.yml | 2 +- azure/windows.yml | 2 +- config.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/azure/posix.yml b/azure/posix.yml index 143f52a..2cddc22 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.0" + BUILD_COMMIT: "v1.1.1" PLAT: "x86_64" NP_BUILD_DEP: "numpy==1.13.3" CYTHON_BUILD_DEP: "cython==0.29.16" diff --git a/azure/windows.yml b/azure/windows.yml index 6ca13c7..9e52449 100644 --- a/azure/windows.yml +++ b/azure/windows.yml @@ -8,7 +8,7 @@ jobs: pool: vmImage: ${{ parameters.vmImage }} variables: - BUILD_COMMIT: "v1.1.0" + BUILD_COMMIT: "v1.1.1" NP_BUILD_DEP: "1.13.3" CYTHON_BUILD_DEP: "0.29.16" NIGHTLY_BUILD_COMMIT: "master" diff --git a/config.sh b/config.sh index a13b7d3..ae47601 100644 --- a/config.sh +++ b/config.sh @@ -33,5 +33,5 @@ function run_tests { # 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"]) 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_missing_required_dependency and not test_file_descriptor_leak"]) if sys.version_info[:2] != (3, 7) else None' }