Skip to content

Commit a1c6933

Browse files
authored
fix Unpin dependencies (#172)
1 parent d14559a commit a1c6933

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

pyproject.toml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -20,21 +20,21 @@ in-project = true
2020

2121
[tool.poetry.dependencies]
2222
python = "^3.8"
23-
eval-type-backport = "^0.2.0"
24-
httpx = "^0.27.0"
25-
jsonpath-python = "^1.0.6"
26-
pydantic = "^2.9.0"
27-
python-dateutil = "^2.8.2"
28-
typing-inspect = "^0.9.0"
29-
google-auth = { version = "2.27.0", optional = true }
30-
requests = { version = "^2.32.3", optional = true }
23+
eval-type-backport = ">=0.2.0"
24+
httpx = ">=0.27.0"
25+
jsonpath-python = ">=1.0.6"
26+
pydantic = ">=2.9.0"
27+
python-dateutil = ">=2.8.2"
28+
typing-inspect = ">=0.9.0"
29+
google-auth = { version = ">=2.27.0", optional = true }
30+
requests = { version = ">=2.32.3", optional = true }
3131

3232
[tool.poetry.group.dev.dependencies]
33-
mypy = "==1.13.0"
34-
pylint = "==3.2.3"
35-
pytest = "^8.2.2"
36-
pytest-asyncio = "^0.23.7"
37-
types-python-dateutil = "^2.9.0.20240316"
33+
mypy = ">=1.13.0"
34+
pylint = ">=3.2.3"
35+
pytest = ">=8.2.2"
36+
pytest-asyncio = ">=0.23.7"
37+
types-python-dateutil = ">=2.9.0.20240316"
3838

3939
[tool.poetry.extras]
4040
gcp = ["google-auth", "requests"]

0 commit comments

Comments
 (0)