Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade httpx version #552

Merged
merged 4 commits into from
Feb 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
76 changes: 71 additions & 5 deletions poetry.lock

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

6 changes: 5 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,11 @@ python = "^3.7"
# Mandatory dependencies
methoddispatch = "^3.0.2"
msgpack = "^1.0.0"
httpx = { version = "^0.24.1", extras = ["http2"] }
httpx = [
{ version = "^0.24.1", python = "~3.7" },
{ version = "^0.25.0", python = "^3.8" },
]
h2 = "^4.1.0" # required for httx package, HTTP2 communication
sacOO7 marked this conversation as resolved.
Show resolved Hide resolved

# Optional dependencies
pycrypto = { version = "^2.6.1", optional = true }
Expand Down
Loading