Skip to content

Commit

Permalink
Merge pull request #552 from ably/fix/httpx-version
Browse files Browse the repository at this point in the history
Upgrade httpx version
  • Loading branch information
sacOO7 committed Feb 5, 2024
2 parents 597bd6f + 9daf883 commit 56be955
Show file tree
Hide file tree
Showing 2 changed files with 76 additions and 6 deletions.
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

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

0 comments on commit 56be955

Please sign in to comment.