Skip to content

Commit

Permalink
Don't freeze httpx for python >= 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Guillaume Gauvrit committed Dec 21, 2023
1 parent 5d02330 commit 55152a1
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 2 deletions.
47 changes: 46 additions & 1 deletion poetry.lock

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

5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,10 @@ version = "2.5.0"

[tool.poetry.dependencies]
python = "^3.7"
httpx = "^0.24.1"
httpx = [
{python = "3.7", version = "^0.24.1"},
{python = ">=3.8", version = ">=0.24, <1"},
]
prometheus-client = {version = "^0.17.1", optional = true}
purgatory = "^1.0.3"
pydantic = ">=1.10.12, <3"
Expand Down

0 comments on commit 55152a1

Please sign in to comment.