Skip to content

Commit dd8b718

Browse files
authored
CI: Reduce duplicate pyarrow version testing (#50451)
1 parent 4e88c3f commit dd8b718

File tree

2 files changed

+11
-7
lines changed

2 files changed

+11
-7
lines changed

.github/workflows/macos-windows.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
uses: ./.github/actions/setup-conda
5454
with:
5555
environment-file: ci/deps/${{ matrix.env_file }}
56-
pyarrow-version: ${{ matrix.os == 'macos-latest' && '6' || '' }}
56+
pyarrow-version: ${{ matrix.os == 'macos-latest' && '9' || '' }}
5757

5858
- name: Build Pandas
5959
uses: ./.github/actions/build_pandas

.github/workflows/ubuntu.yml

+10-6
Original file line numberDiff line numberDiff line change
@@ -78,14 +78,18 @@ jobs:
7878
pattern: "not slow and not network and not single_cpu"
7979
test_args: "-W error::DeprecationWarning:numpy -W error::FutureWarning:numpy"
8080
exclude:
81-
- env_file: actions-39.yaml
82-
pyarrow_version: "6"
83-
- env_file: actions-39.yaml
81+
- env_file: actions-38.yaml
8482
pyarrow_version: "7"
85-
- env_file: actions-310.yaml
86-
pyarrow_version: "6"
87-
- env_file: actions-310.yaml
83+
- env_file: actions-38.yaml
84+
pyarrow_version: "8"
85+
- env_file: actions-38.yaml
86+
pyarrow_version: "9"
87+
- env_file: actions-39.yaml
8888
pyarrow_version: "7"
89+
- env_file: actions-39.yaml
90+
pyarrow_version: "8"
91+
- env_file: actions-39.yaml
92+
pyarrow_version: "9"
8993
fail-fast: false
9094
name: ${{ matrix.name || format('{0} pyarrow={1} {2}', matrix.env_file, matrix.pyarrow_version, matrix.pattern) }}
9195
env:

0 commit comments

Comments
 (0)