Skip to content

Commit 621ef54

Browse files
committed
DEBUG: checking pyarrow for OS dependent issue
1 parent ca1da77 commit 621ef54

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/tests.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,29 +28,35 @@ jobs:
2828
python-version: "3.12"
2929
sphinx: "~=8.0"
3030
myst-parser: "~=4.0"
31+
pyarrow: "18.1.0"
3132
- os: macos-latest
3233
python-version: "3.12"
3334
sphinx: "~=8.0"
3435
myst-parser: "~=4.0"
36+
pyarrow: "18.1.0"
3537
- os: ubuntu-latest
3638
python-version: "3.12"
3739
sphinx: "~=8.0"
3840
myst-parser: "~=4.0"
41+
pyarrow: "18.1.0"
3942
# Oldest known-compatible dependencies
4043
- os: ubuntu-latest
4144
python-version: "3.9"
4245
sphinx: "==5.0.0"
4346
myst-parser: "==1.0.0"
47+
pyarrow: "18.1.0"
4448
# Mid-range dependencies
4549
- os: ubuntu-latest
4650
python-version: "3.11"
4751
sphinx: "==7.0.0"
4852
myst-parser: "==3.0.0"
53+
pyarrow: "18.1.0"
4954
# Newest known-compatible dependencies
5055
- os: ubuntu-latest
5156
python-version: "3.12"
5257
sphinx: "==8.0.2"
5358
myst-parser: "==4.0.0"
59+
pyarrow: "18.1.0"
5460

5561
runs-on: ${{ matrix.os }}
5662

@@ -65,7 +71,7 @@ jobs:
6571
- name: Install myst-nb with Sphinx ${{ matrix.sphinx }}
6672
shell: bash
6773
run: |
68-
pip install --upgrade "Sphinx${{ matrix.sphinx }}" "myst-parser${{ matrix.myst-parser }}" -e .[testing]
74+
pip install --upgrade "Sphinx${{ matrix.sphinx }}" "myst-parser${{ matrix.myst-parser }}" "pyarrow${{ matrix.pyarrow }}" -e .[testing]
6975
pip freeze
7076
7177
- name: Run pytest

0 commit comments

Comments
 (0)