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

test wheel build status in advance of 1.1.4 release #106

Closed
wants to merge 6 commits into from
Closed
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 .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
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.3"
BUILD_COMMIT: "1.1.x"
PLAT: "x86_64"
NP_BUILD_DEP: "numpy==1.13.3"
CYTHON_BUILD_DEP: "cython==0.29.21"
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.3"
BUILD_COMMIT: "1.1.x"
NP_BUILD_DEP: "1.13.3"
CYTHON_BUILD_DEP: "0.29.21"
NIGHTLY_BUILD_COMMIT: "master"
Expand Down
3 changes: 1 addition & 2 deletions config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}