Skip to content

Commit 9d6ba2d

Browse files
Merge pull request #273 from supertokens/fix/relax-pyjwt
fix: Relax pyjwt version constraints
2 parents ce8416e + 9bb6f71 commit 9d6ba2d

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
## unreleased
9+
# [0.11.13] - 2023-01-06
910

1011
- Add missing `original` attribute to flask response and remove logic for cases where `response` is `None`
12+
- Relax PyJWT version constraints https://github.com/supertokens/supertokens-python/issues/272
1113

1214
## [0.11.12] - 2022-12-27
1315
- Fix django cookie expiry time format to make it consistent with other frameworks: https://github.com/supertokens/supertokens-python/issues/267

setup.py

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

7171
setup(
7272
name="supertokens_python",
73-
version="0.11.12",
73+
version="0.11.13",
7474
author="SuperTokens",
7575
license="Apache 2.0",
7676
author_email="[email protected]",
@@ -99,7 +99,7 @@
9999
],
100100
keywords="",
101101
install_requires=[
102-
"PyJWT>=2.0.0 ,<2.4.0",
102+
"PyJWT>=2.0.0 ,<3.0.0",
103103
"httpx>=0.15.0 ,<0.24.0",
104104
"pycryptodome==3.10.*",
105105
"tldextract==3.1.0",

supertokens_python/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# License for the specific language governing permissions and limitations
1313
# under the License.
1414
SUPPORTED_CDI_VERSIONS = ["2.9", "2.10", "2.11", "2.12", "2.13", "2.14", "2.15"]
15-
VERSION = "0.11.12"
15+
VERSION = "0.11.13"
1616
TELEMETRY = "/telemetry"
1717
USER_COUNT = "/users/count"
1818
USER_DELETE = "/user/remove"

0 commit comments

Comments
 (0)