Skip to content
Closed
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
2 changes: 1 addition & 1 deletion poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 4 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,10 @@ folders = [{ path = "auth0" }]

[tool.poetry.dependencies]
python = ">=3.8"
aiohttp = "^3.8.5"
cryptography = "^43.0.1" # pyjwt has a weak dependency on cryptography
pyjwt = "^2.8.0"
requests = "^2.31.0"
urllib3 = "^2.0.7" # requests has a weak dependency on urllib3
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

urrlib3 is removed since it is not used directly by auth0-python. requests has an explicit dependency on urrlib3: https://github.com/psf/requests/blob/main/setup.cfg#L6

aiohttp = ">=3.8.5"
cryptography = ">=43.0.1" # pyjwt has a weak dependency on cryptography
pyjwt = ">=2.8.0"
requests = ">=2.31.0"

[tool.poetry.group.dev.dependencies]
aioresponses = "^0.7.4"
Expand Down
Loading