Skip to content

Commit

Permalink
Allow a more broad range for httpx dependency
Browse files Browse the repository at this point in the history
We needed to set the lower bound to 0.24 for langchain integration,
but we need to allow users to use more recent versions in case
they are not dependenging on older versions of httpx.
  • Loading branch information
mdumandag committed Mar 14, 2024
1 parent 273c031 commit 4db76e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ packages = [{ include = "upstash_vector" }]

[tool.poetry.dependencies]
python = "^3.8"
httpx = "^0.24.1"
httpx = ">=0.24.0, <0.28"

[tool.poetry.group.dev.dependencies]
mypy = "^1.8.0"
Expand Down

0 comments on commit 4db76e8

Please sign in to comment.