File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
8
8
9
9
## [ unreleased]
10
10
11
+ ## [ 0.18.6] - 2024-01-12
12
+
13
+ - Relax constraints on ` httpx ` dependency version.
14
+
11
15
## [ 0.18.5] - 2023-12-14
12
16
13
17
- Fixes an incompatibility issue with Django version 4.0 and above.
Original file line number Diff line number Diff line change 70
70
71
71
setup (
72
72
name = "supertokens_python" ,
73
- version = "0.18.5 " ,
73
+ version = "0.18.6 " ,
74
74
author = "SuperTokens" ,
75
75
license = "Apache 2.0" ,
76
76
102
102
# [crypto] ensures that it installs the `cryptography` library as well
103
103
# based on constraints specified in https://github.com/jpadilla/pyjwt/blob/master/setup.cfg#L50
104
104
"PyJWT[crypto]>=2.5.0,<3.0.0" ,
105
- "httpx>=0.15.0,<0.25 .0" ,
105
+ "httpx>=0.15.0,<=0.26 .0" ,
106
106
"pycryptodome==3.10.*" ,
107
107
"tldextract==3.1.0" ,
108
108
"asgiref>=3.4.1,<4" ,
Original file line number Diff line number Diff line change 14
14
from __future__ import annotations
15
15
16
16
SUPPORTED_CDI_VERSIONS = ["3.0" ]
17
- VERSION = "0.18.5 "
17
+ VERSION = "0.18.6 "
18
18
TELEMETRY = "/telemetry"
19
19
USER_COUNT = "/users/count"
20
20
USER_DELETE = "/user/remove"
You can’t perform that action at this time.
0 commit comments