Skip to content

Commit d8787c4

Browse files
committed
WIP
1 parent 3df63ef commit d8787c4

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

.github/workflows/macos-windows.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,7 @@ jobs:
2828
strategy:
2929
matrix:
3030
os: [macos-10.15, windows-2019]
31-
#env_file: [actions-38.yaml, actions-39.yaml, actions-310.yaml]
32-
env_file: [actions-38.yaml]
31+
env_file: [actions-38.yaml, actions-39.yaml, actions-310.yaml]
3332
pyarrow_version: [6]
3433
fail-fast: false
3534
name: ${{ matrix.name || format('{0} {1} pyarrow={2}', matrix.os, matrix.env_file, matrix.pyarrow_version) }}

.github/workflows/python-dev.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,14 @@ env:
2929

3030
jobs:
3131
build:
32-
if: false # Comment this line out to "unfreeze"
32+
#if: false # Comment this line out to "unfreeze"
3333
runs-on: ${{ matrix.os }}
3434
strategy:
3535
fail-fast: false
3636
matrix:
3737
os: [ubuntu-latest, macOS-latest, windows-latest]
38-
python-version: ["3.11-dev"]
38+
#python-version: ["3.11-dev"]
39+
python-version: ["3.10"]
3940

4041
name: ${{ matrix.python-version }}
4142
timeout-minutes: 80

.github/workflows/ubuntu.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ jobs:
2121
timeout-minutes: 120
2222
strategy:
2323
matrix:
24-
env_file: [actions-38.yaml] #, actions-39.yaml, actions-310.yaml]
25-
pattern: ["not single_cpu"] #, "single_cpu"]
24+
env_file: [actions-38.yaml, actions-39.yaml, actions-310.yaml]
25+
pattern: ["not single_cpu", "single_cpu"]
2626
# Don't test pyarrow v2/3: Causes timeouts in read_csv engine
2727
# even if tests are skipped/xfailed
28-
pyarrow_version: ["5"] #, "7"]
28+
pyarrow_version: ["5", "7"]
2929
include:
3030
- name: "Downstream Compat"
3131
env_file: actions-38-downstream_compat.yaml
@@ -141,3 +141,4 @@ jobs:
141141
uses: ./.github/actions/run-tests
142142
with:
143143
check-pyarrow-version: ${{ matrix.pyarrow_version }}
144+
continue-on-error: ${{ env.IS_PYPY }}

0 commit comments

Comments
 (0)