Skip to content

Commit

Permalink
chore(deps): unpin dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
jean-malo committed Jan 14, 2025
1 parent fd10d3d commit 73c83aa
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 20 deletions.
4 changes: 2 additions & 2 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

36 changes: 18 additions & 18 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,37 +29,37 @@ ignore_missing_imports = true

[tool.poetry.dependencies]
python = "^3.8.10"
pydantic = "^2.7,<3.0"
jsonschema = "^4.21.1"
sentencepiece = "0.2.0"
typing-extensions = "^4.11.0"
tiktoken = "^0.7.0"
pillow = "^10.3.0"
requests = "^2.0.0"
pydantic = ">=2.7,<3.0"
jsonschema = ">=4.21.1"
sentencepiece = ">=0.2.0"
typing-extensions = ">=4.11.0"
tiktoken = ">=0.7.0"
pillow = ">=10.3.0"
requests = ">=2.0.0"

numpy = [
{ version = ">=1.22,<1.25", python = "<3.9" },
{ version = ">=1.25", python = ">=3.9" },
]

opencv-python-headless = { version = "^4.0.0", optional = true }
opencv-python-headless = { version = ">=4.0.0", optional = true }

[tool.poetry.extras]
opencv = ["opencv-python-headless"]

[tool.poetry.group.dev.dependencies]
types-jsonschema = "4.21.0.20240118"
types-protobuf = "4.24.0.20240129"
mypy-protobuf = "^3.5.0"
pytest = "7.4.4"
types-jsonschema = ">=4.21.0.20240118"
types-protobuf = ">=4.24.0.20240129"
mypy-protobuf = ">=3.5.0"
pytest = ">=7.4.4"
ruff = "^0.2.2"
mypy = "^1.8.0"
pytest-cov = "^4.1.0"
diff-cover = "^8.0.3"
types-Pillow = "^10.2.0"
types-requests = "^2.32"
mypy = ">=1.8.0"
pytest-cov = ">=4.1.0"
diff-cover = ">=8.0.3"
types-Pillow = ">=10.2.0"
types-requests = ">=2.32"

coverage = { extras = ["toml"], version = "^7.4.4" }
coverage = { extras = ["toml"], version = ">=7.4.4" }

[build-system]
requires = ["poetry-core"]
Expand Down

0 comments on commit 73c83aa

Please sign in to comment.