Skip to content

Commit

Permalink
fix Unpin dependencies (#172)
Browse files Browse the repository at this point in the history
  • Loading branch information
GaspardBT authored Jan 13, 2025
1 parent d14559a commit a1c6933
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,21 +20,21 @@ in-project = true

[tool.poetry.dependencies]
python = "^3.8"
eval-type-backport = "^0.2.0"
httpx = "^0.27.0"
jsonpath-python = "^1.0.6"
pydantic = "^2.9.0"
python-dateutil = "^2.8.2"
typing-inspect = "^0.9.0"
google-auth = { version = "2.27.0", optional = true }
requests = { version = "^2.32.3", optional = true }
eval-type-backport = ">=0.2.0"
httpx = ">=0.27.0"
jsonpath-python = ">=1.0.6"
pydantic = ">=2.9.0"
python-dateutil = ">=2.8.2"
typing-inspect = ">=0.9.0"
google-auth = { version = ">=2.27.0", optional = true }
requests = { version = ">=2.32.3", optional = true }

[tool.poetry.group.dev.dependencies]
mypy = "==1.13.0"
pylint = "==3.2.3"
pytest = "^8.2.2"
pytest-asyncio = "^0.23.7"
types-python-dateutil = "^2.9.0.20240316"
mypy = ">=1.13.0"
pylint = ">=3.2.3"
pytest = ">=8.2.2"
pytest-asyncio = ">=0.23.7"
types-python-dateutil = ">=2.9.0.20240316"

[tool.poetry.extras]
gcp = ["google-auth", "requests"]
Expand Down

0 comments on commit a1c6933

Please sign in to comment.