Skip to content

Commit 245248b

Browse files
Merge pull request #359 from supertokens/fix/relax-httpx
fix: Relax version constraints on httpx dependency
2 parents db32365 + 43411ed commit 245248b

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88

99
## [unreleased]
1010

11+
12+
## [0.14.6] - 2023-06-22
13+
14+
### Changes and fixes
15+
16+
- Relax constraints on `httpx` dependency version
17+
1118
## [0.14.5] - 2023-06-21
1219

1320
### Changes and fixes

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070

7171
setup(
7272
name="supertokens_python",
73-
version="0.14.5",
73+
version="0.14.6",
7474
author="SuperTokens",
7575
license="Apache 2.0",
7676
author_email="[email protected]",
@@ -101,8 +101,8 @@
101101
install_requires=[
102102
# [crypto] ensures that it installs the `cryptography` library as well
103103
# based on constraints specified in https://github.com/jpadilla/pyjwt/blob/master/setup.cfg#L50
104-
"PyJWT[crypto]>=2.6.0 ,<3.0.0",
105-
"httpx>=0.15.0 ,<0.24.0",
104+
"PyJWT[crypto]>=2.6.0,<3.0.0",
105+
"httpx>=0.15.0,<0.25.0",
106106
"pycryptodome==3.10.*",
107107
"tldextract==3.1.0",
108108
"asgiref>=3.4.1,<4",

supertokens_python/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
from __future__ import annotations
1515

1616
SUPPORTED_CDI_VERSIONS = ["2.21"]
17-
VERSION = "0.14.5"
17+
VERSION = "0.14.6"
1818
TELEMETRY = "/telemetry"
1919
USER_COUNT = "/users/count"
2020
USER_DELETE = "/user/remove"

0 commit comments

Comments
 (0)