File tree 1 file changed +11
-5
lines changed
1 file changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -28,25 +28,35 @@ jobs:
28
28
python-version : " 3.12"
29
29
sphinx : " ~=8.0"
30
30
myst-parser : " ~=4.0"
31
+ pillow : " ==11.0.0"
31
32
- os : macos-latest
32
33
python-version : " 3.12"
33
34
sphinx : " ~=8.0"
34
35
myst-parser : " ~=4.0"
36
+ pillow : " ==11.0.0"
37
+ - os : ubuntu-latest
38
+ python-version : " 3.12"
39
+ sphinx : " ~=8.0"
40
+ myst-parser : " ~=4.0"
41
+ pillow : " ==11.0.0"
35
42
# Oldest known-compatible dependencies
36
43
- os : ubuntu-latest
37
44
python-version : " 3.9"
38
45
sphinx : " ==5.0.0"
39
46
myst-parser : " ==1.0.0"
47
+ pillow : " ==11.0.0"
40
48
# Mid-range dependencies
41
49
- os : ubuntu-latest
42
50
python-version : " 3.11"
43
51
sphinx : " ==7.0.0"
44
52
myst-parser : " ==3.0.0"
53
+ pillow : " ==11.0.0"
45
54
# Newest known-compatible dependencies
46
55
- os : ubuntu-latest
47
56
python-version : " 3.12"
48
57
sphinx : " ==8.0.2"
49
58
myst-parser : " ==4.0.0"
59
+ pillow : " ==11.0.0"
50
60
51
61
runs-on : ${{ matrix.os }}
52
62
61
71
- name : Install myst-nb with Sphinx ${{ matrix.sphinx }}
62
72
shell : bash
63
73
run : |
64
- # Temporary: for python 3.13 we need the nightly pyarrow wheels
65
- if [[ ${{ matrix.python-version }} == '3.13' ]] ; then
66
- PIP_EXTRA_INDEX_URL=https://pypi.anaconda.org/scientific-python-nightly-wheels/simple pip install --pre pyarrow
67
- fi
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 }}" "pillow${{ matrix.pillow }}" -e .[testing]
69
75
pip freeze
70
76
71
77
- name : Run pytest
You can’t perform that action at this time.
0 commit comments