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

Commit dbcff48

Browse files
Merge branch 'master' into test-1.4.x
2 parents af2cc17 + a23870b commit dbcff48

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.travis.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ env:
1313
- PLAT=aarch64
1414
- NP_BUILD_DEP="numpy==1.17.3"
1515
- NP_TEST_DEP="numpy==1.17.3"
16-
- CYTHON_BUILD_DEP="cython==0.29.24"
16+
- CYTHON_BUILD_DEP="cython==0.29.30"
1717
- WHEELHOUSE_UPLOADER_USERNAME=travis-worker
1818
- TEST_DEPENDS="pytest pytest-xdist hypothesis"
1919
- TEST_DIR="tmp_for_test"
@@ -37,7 +37,6 @@ jobs:
3737
- MB_PYTHON_VERSION="3.10"
3838
- NP_BUILD_DEP="numpy==1.21.2"
3939
- NP_TEST_DEP="numpy==1.21.2"
40-
- CYTHON_BUILD_DEP="cython==0.29.24"
4140
# Xenial is EOL and the pip there doesn't support python 3.10
4241
- DOCKER_TEST_IMAGE="multibuild/focal_arm64v8"
4342
before_install:

azure/posix.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
BUILD_COMMIT: "1.4.x"
1313
PLAT: "x86_64"
1414
NP_BUILD_DEP: "numpy==1.17.3"
15-
CYTHON_BUILD_DEP: "cython==0.29.24"
15+
CYTHON_BUILD_DEP: "cython==0.29.30"
1616
NIGHTLY_BUILD_COMMIT: "main"
1717
NIGHTLY_BUILD: "false"
1818
TEST_DEPENDS: "pytest pytest-xdist hypothesis"

azure/windows.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
variables:
1111
BUILD_COMMIT: "1.4.x"
1212
NP_BUILD_DEP: "1.17.3"
13-
CYTHON_BUILD_DEP: "0.29.24"
13+
CYTHON_BUILD_DEP: "0.29.30"
1414
NIGHTLY_BUILD_COMMIT: "main"
1515
NIGHTLY_BUILD: "false"
1616
PYTHON_ARCH: "x64"

config.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ function build_wheel {
2525
function run_tests {
2626
# Runs tests on installed distribution from an empty directory
2727
export PYTHONHASHSEED=$(python -c 'import random; print(random.randint(1, 4294967295))')
28+
export PANDAS_CI=1
2829
echo $PATH
2930
echo ${MB_PYTHON_VERSION}
3031
which -a python
@@ -36,5 +37,5 @@ function run_tests {
3637
# Skip test_rolling_var_numerical_issues: https://github.com/pandas-dev/pandas/issues/37398
3738
# Skip test_rolling_skew_kurt_large_value_range: https://github.com/pandas-dev/pandas/issues/37398
3839
# Skip test_pairwise_with_self/test_no_pairwise_with_self: https://github.com/pandas-dev/pandas/issues/39553
39-
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"])'
40+
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"])'
4041
}

0 commit comments

Comments
 (0)