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

RLS v1.1.1 #96

Merged
merged 2 commits into from
Aug 20, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion azure/posix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion azure/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}