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

releng - require urllib3 <2.0 to speed up dependency resolution #8563

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ custodian = 'c7n.cli:main'
[tool.poetry.dependencies]
python = "^3.7"
boto3 = "^1.12.31"
# set an upper bound on urllib3 to avoid long dependency resolution times
# botocore accepts a narrow range of urllib3 versions, while packages
# like docker/requests/twine are happy with 2.0.
urllib3 = "<2.0"
jsonschema = ">=3.0.0"
argcomplete = ">=1.12.3"
python-dateutil = "^2.8.2"
Expand Down