Skip to content

Commit 65e9620

Browse files
committed
try removing all Pillow pkg references (should be implied!)
1 parent 8816817 commit 65e9620

File tree

3 files changed

+1
-4
lines changed

3 files changed

+1
-4
lines changed

.github/workflows/readme_snippets.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ jobs:
2626
- run: python -m pip install $PIP_INSTALL_ARGS -e .
2727
- run: python -m pip install $PIP_INSTALL_ARGS pytest-codeblocks pytest
2828
- run: python -m pip install $PIP_INSTALL_ARGS "pyparsing<3.0.0" # https://github.com/matplotlib/matplotlib/issues/25204
29-
- run: python -m pip install $PIP_INSTALL_ARGS "pillow<11.3.0" # matplotlib triggers deprecation warnings in 11.3.0
3029
- run: |
3130
python -c "import os,pytest_codeblocks; code=pytest_codeblocks.extract_from_file('docs/markdown/pysdm_landing.md'); f=open('readme.py', 'w', encoding='utf-8'); f.write('# coding: utf-8'+os.linesep); f.writelines(block.code for block in code if block.syntax=='Python'); f.close()"
3231
- run: cat -n readme.py

examples/setup.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ def get_long_description():
2828
"open-atmos-jupyter-utils",
2929
"pystrict",
3030
"matplotlib",
31-
"Pillow",
3231
"joblib",
3332
"ipywidgets",
3433
"seaborn",
@@ -45,7 +44,6 @@ def get_long_description():
4544
"open-atmos-jupyter-utils==1.3.0",
4645
"pystrict==1.3",
4746
"matplotlib!=3.9.1",
48-
"Pillow<12.1.0",
4947
"joblib==1.5.1",
5048
"ipywidgets==8.1.7",
5149
"seaborn==0.13.2",

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
]
4444

4545
optional_dependencies = {
46-
"unit-tests": ["pytest", "pytest-timeout", "matplotlib!=3.9.1", "Pillow<11.3.0"],
46+
"unit-tests": ["pytest", "pytest-timeout", "matplotlib!=3.9.1"],
4747
"nonunit-tests": ["pytest", "PySDM-examples", "PyPartMC"],
4848
"CI_version_pins": [
4949
"PyPartMC==1.7.2",

0 commit comments

Comments
 (0)