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

Commit 8a73f6c

Browse files
authored
BLD: Fix nightlies (#201)
* BLD: Fix nightlies * pin numpy * Try unpinning pandas to latest 1.5.x * try again * Skip single_cpu tests * Update config.sh * revert BUILD_COMMIT changes
1 parent 06d7fab commit 8a73f6c

File tree

4 files changed

+4
-1
lines changed

4 files changed

+4
-1
lines changed

.travis.yml

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ env:
1313
- PLAT=aarch64
1414
- NP_BUILD_DEP="numpy==1.17.3"
1515
- NP_TEST_DEP="numpy==1.17.3"
16+
- EXTRA_BUILD_DEP="versioneer[toml]"
1617
- CYTHON_BUILD_DEP="cython==0.29.32"
1718
- WHEELHOUSE_UPLOADER_USERNAME=travis-worker
1819
- TEST_DEPENDS="pytest pytest-xdist hypothesis==6.52.1"

azure/posix.yml

+1
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ jobs:
6363
- bash: |
6464
set -e
6565
pip install virtualenv wheel
66+
pip install versioneer[toml]
6667
BUILD_DEPENDS="$NP_BUILD_DEP $CYTHON_BUILD_DEP"
6768
6869
source multibuild/common_utils.sh

azure/windows.yml

+1
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ jobs:
6767
set -e
6868
pip install --timeout=60 numpy==$NP_BUILD_DEP
6969
pip install --timeout=60 $TEST_DEPENDS Cython==$CYTHON_BUILD_DEP
70+
pip install versioneer[toml]
7071
pip install twine wheel
7172
pushd pandas
7273
cp "C:/Program Files (x86)/Microsoft Visual Studio/2019/Enterprise/VC/Redist/MSVC/14.29.30133/$PYTHON_ARCH/Microsoft.VC142.CRT/msvcp140.dll" pandas/_libs/window

config.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,5 +42,5 @@ function run_tests {
4242
# Skip test_rolling_var_numerical_issues: https://github.com/pandas-dev/pandas/issues/37398
4343
# Skip test_rolling_skew_kurt_large_value_range: https://github.com/pandas-dev/pandas/issues/37398
4444
# Skip test_pairwise_with_self/test_no_pairwise_with_self: https://github.com/pandas-dev/pandas/issues/39553
45-
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 and not test_pickle_frame_v124_unpickle_130"])'
45+
python -c 'import pandas; pandas.test(extra_args=["-m not clipboard and not single_cpu", "--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 and not test_pickle_frame_v124_unpickle_130"])'
4646
}

0 commit comments

Comments
 (0)