Skip to content

Commit 27a4786

Browse files
author
Tyler Romero
authored
Fix Python 3.13 CICD issues by updating packages (#283)
Pillow 11 is the first version that supports Python 3.13, using pillow 9 broke test-comprehensive for the Python 3.13 part of the matrix.
1 parent 512f75b commit 27a4786

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

pyproject.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ version = "0.19.0"
1515
# For certifi, use ">=" instead of "^" since it upgrades its "major version" every year, not really following semver
1616
certifi = ">=2023.7.22"
1717
frozendict = "^2.3.2"
18-
pillow = ">=9.0.0" # TODO: We may want to mark pillow (and numpy) as extra (https://python-poetry.org/docs/master/pyproject#extras)
19-
pydantic = ">=2.0,<3.0.0"
18+
pillow = ">=11.0.0" # TODO: We may want to mark pillow (and numpy) as extra (https://python-poetry.org/docs/master/pyproject#extras)
19+
pydantic = "^2.0.0"
2020
python = ">=3.9,<4.0"
2121
python-dateutil = "^2.9.0"
2222
requests = "^2.28.2"
@@ -42,14 +42,14 @@ types-requests = "^2.28.11.17"
4242

4343
[tool.poetry.group.sphinx-deps.dependencies]
4444
# These are extra / stricter dependencies required to build the API reference docs
45-
Sphinx = {version = "7.2.6", python = ">=3.9.0,<4.0"}
46-
autodoc-pydantic = {version = "2.0.1", python = ">=3.9.0,<4.0"}
47-
pillow = "^9.0.0"
48-
pydantic = "^2.0"
49-
python = ">=3.9.0,<4.0"
45+
Sphinx = {version = "^7.2.6", python = ">=3.9,<4.0"}
46+
autodoc-pydantic = {version = "^2.0.1", python = ">=3.9,<4.0"}
47+
pillow = "^11.0.0"
48+
pydantic = "^2.0.0"
49+
python = ">=3.9,<4.0"
5050
python-dateutil = "^2.8.2"
51-
sphinx-rtd-theme = {version = "1.3.0", python = ">=3.9.0,<4.0"}
52-
toml = "0.10.2"
51+
sphinx-rtd-theme = {version = "^1.3.0", python = ">=3.9,<4.0"}
52+
toml = "^0.10.2"
5353

5454
[tool.poetry.scripts]
5555
groundlight = "groundlight.cli:groundlight"

0 commit comments

Comments
 (0)