Skip to content

Commit d211998

Browse files
Backport PR #52107 on branch 2.0.x (CI: Correctly set PANDAS_CI on ubuntu builds) (#52119)
Backport PR #52107: CI: Correctly set PANDAS_CI on ubuntu builds Co-authored-by: Matthew Roeschke <[email protected]>
1 parent eccf9bd commit d211998

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/ubuntu.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ jobs:
2727
env_file: [actions-38.yaml, actions-39.yaml, actions-310.yaml, actions-311.yaml]
2828
pattern: ["not single_cpu", "single_cpu"]
2929
pyarrow_version: ["8", "9", "10"]
30-
pandas_ci: [1]
3130
include:
3231
- name: "Downstream Compat"
3332
env_file: actions-38-downstream_compat.yaml
@@ -74,7 +73,7 @@ jobs:
7473
test_args: "-W error::DeprecationWarning -W error::FutureWarning"
7574
# TODO(cython3): Re-enable once next-beta(after beta 1) comes out
7675
# There are some warnings failing the build with -werror
77-
pandas_ci: 0
76+
pandas_ci: "0"
7877
exclude:
7978
- env_file: actions-38.yaml
8079
pyarrow_version: "8"
@@ -98,7 +97,7 @@ jobs:
9897
LC_ALL: ${{ matrix.lc_all || '' }}
9998
PANDAS_DATA_MANAGER: ${{ matrix.pandas_data_manager || 'block' }}
10099
PANDAS_COPY_ON_WRITE: ${{ matrix.pandas_copy_on_write || '0' }}
101-
PANDAS_CI: ${{ matrix.pandas_ci }}
100+
PANDAS_CI: ${{ matrix.pandas_ci || '1' }}
102101
TEST_ARGS: ${{ matrix.test_args || '' }}
103102
PYTEST_WORKERS: ${{ contains(matrix.pattern, 'not single_cpu') && 'auto' || '1' }}
104103
PYTEST_TARGET: ${{ matrix.pytest_target || 'pandas' }}

0 commit comments

Comments
 (0)