-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upping version number to 11.2 (#116)
- Loading branch information
1 parent
7a25332
commit 4aae58a
Showing
1 changed file
with
4 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
authors = ["Groundlight AI <[email protected]>"] | ||
description = "Build computer vision systems from natural language with Groundlight" | ||
description = "Build computer vision systems using natural language with Groundlight" | ||
homepage = "https://code.groundlight.ai/python-sdk" | ||
license = "MIT" | ||
name = "groundlight" | ||
|
@@ -9,10 +9,10 @@ packages = [ | |
{include = "**/*.py", from = "src"}, | ||
] | ||
readme = "README.md" | ||
version = "0.11.1" | ||
version = "0.11.2" | ||
|
||
[tool.poetry.dependencies] | ||
# For certifi, use ">=" instead of "^" since it upgrades its "major version" every year | ||
# 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) | ||
|
@@ -40,6 +40,7 @@ toml-sort = "^0.23.0" | |
types-requests = "^2.28.11.17" | ||
|
||
[tool.poetry.group.sphinx-deps.dependencies] | ||
# These are extra / stricter dependencies required to build the API reference docs | ||
python = ">=3.9.0,<4.0" | ||
python-dateutil = "^2.8.2" | ||
Sphinx = {version = "7.2.6", python = ">=3.9.0,<4.0"} | ||
|