Skip to content

Commit

Permalink
DEBUG: checking pillow for OS dependent issue
Browse files Browse the repository at this point in the history
  • Loading branch information
bsipocz committed Feb 6, 2025
1 parent ca1da77 commit 35b20f8
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,29 +28,35 @@ jobs:
python-version: "3.12"
sphinx: "~=8.0"
myst-parser: "~=4.0"
pillow: "==11.0.0"
- os: macos-latest
python-version: "3.12"
sphinx: "~=8.0"
myst-parser: "~=4.0"
pillow: "==11.0.0"
- os: ubuntu-latest
python-version: "3.12"
sphinx: "~=8.0"
myst-parser: "~=4.0"
pillow: "==11.0.0"
# Oldest known-compatible dependencies
- os: ubuntu-latest
python-version: "3.9"
sphinx: "==5.0.0"
myst-parser: "==1.0.0"
pillow: "==11.0.0"
# Mid-range dependencies
- os: ubuntu-latest
python-version: "3.11"
sphinx: "==7.0.0"
myst-parser: "==3.0.0"
pillow: "==11.0.0"
# Newest known-compatible dependencies
- os: ubuntu-latest
python-version: "3.12"
sphinx: "==8.0.2"
myst-parser: "==4.0.0"
pillow: "==11.0.0"

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

Expand All @@ -65,7 +71,7 @@ jobs:
- name: Install myst-nb with Sphinx ${{ matrix.sphinx }}
shell: bash
run: |
pip install --upgrade "Sphinx${{ matrix.sphinx }}" "myst-parser${{ matrix.myst-parser }}" -e .[testing]
pip install --upgrade "Sphinx${{ matrix.sphinx }}" "myst-parser${{ matrix.myst-parser }}" "pillow${{ matrix.pillow }}" -e .[testing]
pip freeze
- name: Run pytest
Expand Down

0 comments on commit 35b20f8

Please sign in to comment.