Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Async All the Way #621

Draft
wants to merge 6 commits into
base: master
Choose a base branch
from
Draft
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
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.7.1
4.7.2
1,358 changes: 769 additions & 589 deletions poetry.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -29,7 +29,7 @@ folders = [{ path = "auth0" }]
python = ">=3.8"
aiohttp = "^3.8.5"
cryptography = "^42.0.4" # pyjwt has a weak dependency on cryptography
pyjwt = "^2.8.0"
pyjwt = { git = "https://github.com/padrepitufo/pyjwt.git", tag = "2.9.0", extras = ["async"] }
requests = "^2.31.0"
urllib3 = "^2.0.7" # requests has a weak dependency on urllib3

2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -23,7 +23,7 @@ packaging==23.1 ; python_version >= "3.7" and python_version < "4.0"
pipx==1.2.0 ; python_version >= "3.7" and python_version < "4.0"
pluggy==1.2.0 ; python_version >= "3.7" and python_version < "4.0"
pycparser==2.21 ; python_version >= "3.7" and python_version < "4.0"
pyjwt==2.8.0 ; python_version >= "3.7" and python_version < "4.0"
pyjwt[async] @ git+https://github.com/padrepitufo/pyjwt.git@2.9.0 ; python_version >= "3.8" and python_version < "4.0"
pyopenssl==23.2.0 ; python_version >= "3.7" and python_version < "4.0"
pytest-aiohttp==1.0.4 ; python_version >= "3.7" and python_version < "4.0"
pytest-asyncio==0.21.1 ; python_version >= "3.7" and python_version < "4.0"