Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
=========
Changelog
=========
1.4.3 (2025-09-25)
------------------

* Update pyjwt to 2.4.0

1.4.2 (2025-01-08)
------------------

Expand Down
2 changes: 1 addition & 1 deletion iam_python_sdk/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

__author__ = """Analytics AccelByte"""
__email__ = 'justice-analytics-team@accelbyte.net'
__version__ = '1.4.2'
__version__ = '1.4.3'
__all__ = [
'NewDefaultClient',
'NewAsyncClient',
Expand Down
2 changes: 1 addition & 1 deletion requirements_dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ black==21.7b0
backoff==1.11.1
httpx==0.22.0
httpcore==0.14.5
pyjwt[crypto]==2.2.0
pyjwt[crypto]==2.4.0
crontab==0.23.0
respx==0.19.2
Flask>=1.0,<2.0
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.4.2
current_version = 1.4.3
commit = True
tag = True
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(rc(?P<rc>\d+))?
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
'backoff==1.11.1',
'httpx==0.22.0',
'httpcore==0.14.5',
'pyjwt[crypto]==2.2.0',
'pyjwt[crypto]==2.4.0',
'crontab==0.23.0',
'bitarray==2.3.4',
'mmh3==3.0.0'
Expand All @@ -24,7 +24,7 @@
test_requirements = ['pytest==6.2.4', 'pytest-asyncio==0.16.0', 'respx==0.19.2']

optional_requirements = {
"flask": ["Flask>=1.0,<2.0"],
"flask": ["Flask>=1.0,<3.0"],
"fastapi": ["fastapi<=0.90.1"]
}

Expand Down
Loading