Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix tests by not allowing pillow >= 11. #126

Merged
merged 2 commits into from
Dec 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ CHANGES
4.4.1 (unreleased)
------------------

- Nothing changed yet.
- As tests break with ``pillow >= 11``, for now force the tests to use an older
version.
(`#125 <https://github.com/zopefoundation/z3c.rml/issues/125>_`)


4.4.0 (2023-08-23)
Expand Down
2 changes: 2 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ envlist =
[testenv]
usedevelop = true
deps =
pillow < 11
commands =
zope-testrunner --test-path=src {posargs:-vc}
extras =
Expand Down Expand Up @@ -49,6 +50,7 @@ allowlist_externals =
mkdir
deps =
coverage
pillow < 11
commands =
mkdir -p {toxinidir}/parts/htmlcov
coverage run -m zope.testrunner --test-path=src {posargs:-vc}
Expand Down
Loading