Skip to content

Commit

Permalink
Relax constraints on The httpx command line client could not run beca…
Browse files Browse the repository at this point in the history
…use the required dependencies were not installed.

Make sure you've installed everything with: pip install 'httpx[cli]' dependency version
  • Loading branch information
anku255 committed Jan 12, 2024
1 parent eec16b7 commit dab58bc
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [unreleased]

## [0.18.6] - 2024-01-12

- Relax constraints on `httpx` dependency version.

## [0.18.5] - 2023-12-14

- Fixes an incompatibility issue with Django version 4.0 and above.
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@

setup(
name="supertokens_python",
version="0.18.5",
version="0.18.6",
author="SuperTokens",
license="Apache 2.0",
author_email="[email protected]",
Expand Down Expand Up @@ -102,7 +102,7 @@
# [crypto] ensures that it installs the `cryptography` library as well
# based on constraints specified in https://github.com/jpadilla/pyjwt/blob/master/setup.cfg#L50
"PyJWT[crypto]>=2.5.0,<3.0.0",
"httpx>=0.15.0,<0.25.0",
"httpx>=0.15.0,<=0.26.0",
"pycryptodome==3.10.*",
"tldextract==3.1.0",
"asgiref>=3.4.1,<4",
Expand Down
2 changes: 1 addition & 1 deletion supertokens_python/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from __future__ import annotations

SUPPORTED_CDI_VERSIONS = ["3.0"]
VERSION = "0.18.5"
VERSION = "0.18.6"
TELEMETRY = "/telemetry"
USER_COUNT = "/users/count"
USER_DELETE = "/user/remove"
Expand Down

0 comments on commit dab58bc

Please sign in to comment.