Skip to content

Commit 673f023

Browse files
authored
CI: Correctly set PANDAS_CI on ubuntu builds (#52107)
1 parent 7e92ca6 commit 673f023

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
@@ -28,7 +28,6 @@ jobs:
2828
env_file: [actions-38.yaml, actions-39.yaml, actions-310.yaml, actions-311.yaml]
2929
pattern: ["not single_cpu", "single_cpu"]
3030
pyarrow_version: ["8", "9", "10"]
31-
pandas_ci: [1]
3231
include:
3332
- name: "Downstream Compat"
3433
env_file: actions-38-downstream_compat.yaml
@@ -75,7 +74,7 @@ jobs:
7574
test_args: "-W error::DeprecationWarning -W error::FutureWarning"
7675
# TODO(cython3): Re-enable once next-beta(after beta 1) comes out
7776
# There are some warnings failing the build with -werror
78-
pandas_ci: 0
77+
pandas_ci: "0"
7978
exclude:
8079
- env_file: actions-38.yaml
8180
pyarrow_version: "8"
@@ -99,7 +98,7 @@ jobs:
9998
LC_ALL: ${{ matrix.lc_all || '' }}
10099
PANDAS_DATA_MANAGER: ${{ matrix.pandas_data_manager || 'block' }}
101100
PANDAS_COPY_ON_WRITE: ${{ matrix.pandas_copy_on_write || '0' }}
102-
PANDAS_CI: ${{ matrix.pandas_ci }}
101+
PANDAS_CI: ${{ matrix.pandas_ci || '1' }}
103102
TEST_ARGS: ${{ matrix.test_args || '' }}
104103
PYTEST_WORKERS: ${{ contains(matrix.pattern, 'not single_cpu') && 'auto' || '1' }}
105104
PYTEST_TARGET: ${{ matrix.pytest_target || 'pandas' }}

0 commit comments

Comments
 (0)