Skip to content
Merged
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
18 changes: 9 additions & 9 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ version = "0.19.0"
# For certifi, use ">=" instead of "^" since it upgrades its "major version" every year, not really following semver
certifi = ">=2023.7.22"
frozendict = "^2.3.2"
pillow = ">=9.0.0" # TODO: We may want to mark pillow (and numpy) as extra (https://python-poetry.org/docs/master/pyproject#extras)
pydantic = ">=2.0,<3.0.0"
pillow = ">=11.0.0" # TODO: We may want to mark pillow (and numpy) as extra (https://python-poetry.org/docs/master/pyproject#extras)
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

pillow 11 is the first version that has support for python 3.13

pydantic = "^2.0.0"
python = ">=3.9,<4.0"
python-dateutil = "^2.9.0"
requests = "^2.28.2"
Expand All @@ -42,14 +42,14 @@ types-requests = "^2.28.11.17"

[tool.poetry.group.sphinx-deps.dependencies]
# These are extra / stricter dependencies required to build the API reference docs
Sphinx = {version = "7.2.6", python = ">=3.9.0,<4.0"}
autodoc-pydantic = {version = "2.0.1", python = ">=3.9.0,<4.0"}
pillow = "^9.0.0"
pydantic = "^2.0"
python = ">=3.9.0,<4.0"
Sphinx = {version = "^7.2.6", python = ">=3.9,<4.0"}
Copy link
Contributor Author

@tyler-romero tyler-romero Dec 3, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

these are all no-ops but use poetry formatting in the standard way

autodoc-pydantic = {version = "^2.0.1", python = ">=3.9,<4.0"}
pillow = "^11.0.0"
pydantic = "^2.0.0"
python = ">=3.9,<4.0"
python-dateutil = "^2.8.2"
sphinx-rtd-theme = {version = "1.3.0", python = ">=3.9.0,<4.0"}
toml = "0.10.2"
sphinx-rtd-theme = {version = "^1.3.0", python = ">=3.9,<4.0"}
toml = "^0.10.2"

[tool.poetry.scripts]
groundlight = "groundlight.cli:groundlight"
Expand Down
Loading