Skip to content

Commit

Permalink
Backport PR matplotlib#26799: Update kiwisolver and pillow versions t…
Browse files Browse the repository at this point in the history
…o be consistent with requirements

Merge pull request matplotlib#26799 from oscargus/kiwiversion

Update kiwisolver and pillow versions to be consistent with requirements

(cherry picked from commit ca52d68)

Conflict was because numpy is pinned to `<2` on the release branch but not on main
  • Loading branch information
ksunden committed Sep 18, 2023
1 parent 0729415 commit 61aea38
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ dependencies:
- cycler>=0.10.0
- fonttools>=4.22.0
- importlib-resources>=3.2.0
- kiwisolver>=1.0.1
- kiwisolver>=1.3.1
- numpy>=1.21
- pillow>=6.2
- pillow>=8
- pybind11>=2.6.0
- pygobject
- pyparsing>=2.3.1
Expand Down
2 changes: 1 addition & 1 deletion lib/matplotlib/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ def _check_versions():
for modname, minver in [
("cycler", "0.10"),
("dateutil", "2.7"),
("kiwisolver", "1.0.1"),
("kiwisolver", "1.3.1"),
("numpy", "1.21"),
("pyparsing", "2.3.1"),
]:
Expand Down
4 changes: 2 additions & 2 deletions requirements/testing/mypy.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ sphinx
contourpy>=1.0.1
cycler>=0.10
fonttools>=4.22.0
kiwisolver>=1.0.1
kiwisolver>=1.3.1
numpy>=1.19
packaging>=20.0
pillow>=6.2.0
pillow>=8
pyparsing>=2.3.1
python-dateutil>=2.7
setuptools_scm>=7
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -332,10 +332,10 @@ def make_release_tree(self, base_dir, files):
"contourpy>=1.0.1",
"cycler>=0.10",
"fonttools>=4.22.0",
"kiwisolver>=1.0.1",
"kiwisolver>=1.3.1",
"numpy>=1.21,<2",
"packaging>=20.0",
"pillow>=6.2.0",
"pillow>=8",
"pyparsing>=2.3.1",
"python-dateutil>=2.7",
] + (
Expand Down

0 comments on commit 61aea38

Please sign in to comment.