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
16 changes: 8 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ classifiers = [
"Programming Language :: Python :: 3.9",
]
dependencies = [
"urllib3 ~=2.2.1",
"python-dateutil ~=2.9.0.post0",
"Authlib ~=1.3.0",
"pyjwt ~=2.8.0",
"requests ~=2.31.0",
"typing-extensions ~=4.11.0",
"frozendict ~=2.4.3",
"certifi ~=2024.2.2",
"urllib3",
"python-dateutil",
"Authlib",
"pyjwt",
"requests",
"typing-extensions >=4.11.0",
"frozendict >=2.4.3",
"certifi >=2024.7.4",
]
[project.urls]
"Homepage" = "https://github.com/kinde-oss/kinde-python-sdk"
Expand Down
16 changes: 8 additions & 8 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
urllib3~=2.2.1 # https://github.com/urllib3/urllib3
python-dateutil~=2.9.0.post0 # https://github.com/dateutil/dateutil
Authlib~=1.3.0 # https://github.com/lepture/authlib
pyjwt~=2.8.0 # https://github.com/jpadilla/pyjwt
requests~=2.32.0 # https://github.com/psf/requests
typing-extensions~=4.11.0 # https://github.com/python/typing_extensions
frozendict~=2.4.3 # https://github.com/Marco-Sulla/python-frozendict
certifi~=2024.2.2 # https://github.com/certifi/python-certifi
urllib3>=2.2.2 # https://github.com/urllib3/urllib3
python-dateutil>=2.9.0 # https://github.com/dateutil/dateutil
Authlib>=1.3.1 # https://github.com/lepture/authlib
pyjwt>=2.10.1 # https://github.com/jpadilla/pyjwt
requests>=2.32.0 # https://github.com/psf/requests
typing-extensions>=4.11 # https://github.com/python/typing_extensions
frozendict>=2.4 # https://github.com/Marco-Sulla/python-frozendict
certifi>=2024.12.14 # https://github.com/certifi/python-certifi
Loading