-
-
Notifications
You must be signed in to change notification settings - Fork 37.8k
Add backoff to forbidden packages #170242
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -127,9 +127,6 @@ pandas==2.3.3 | |
| # https://github.com/home-assistant/core/pull/67046 | ||
| multidict>=6.0.2 | ||
|
|
||
| # Version 2.0 added typing, prevent accidental fallbacks | ||
| backoff>=2.0 | ||
|
|
||
| # Brotli 1.2.0 fixes CVE and is required for aiohttp 3.13.3 compatibility | ||
| Brotli>=1.2.0 | ||
|
|
||
|
|
@@ -236,6 +233,11 @@ auth0-python<5.0 | |
| # Setuptools >=82.0.0 doesn't contain pkg_resources anymore | ||
| setuptools<82.0.0 | ||
|
|
||
| # backoff and python-backoff share the same package name | ||
| # pin versions which are mostly compatible to each other | ||
| backoff==2.2.1 | ||
| python-backoff<2.4.0 | ||
|
Comment on lines
+236
to
+239
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Since both packages share the same name, they will inevitably overwrite one another during install. Depending on the dependency resolution, the final package might at one point be Added the constraints here to make sure that we don't accidentally depend on "new" features in
cdce8p marked this conversation as resolved.
|
||
|
|
||
| # Pin dependencies with '.pth' files to exact versions, only update manually! | ||
| # https://github.com/Azure/azure-kusto-python/ -> '.pth' files removed with >=5.0.5 | ||
| # https://github.com/xolox/python-coloredlogs -> unmaintained | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -110,9 +110,6 @@ | |
| # https://github.com/home-assistant/core/pull/67046 | ||
| multidict>=6.0.2 | ||
|
|
||
| # Version 2.0 added typing, prevent accidental fallbacks | ||
| backoff>=2.0 | ||
|
|
||
| # Brotli 1.2.0 fixes CVE and is required for aiohttp 3.13.3 compatibility | ||
| Brotli>=1.2.0 | ||
|
|
||
|
|
@@ -219,6 +216,11 @@ | |
| # Setuptools >=82.0.0 doesn't contain pkg_resources anymore | ||
| setuptools<82.0.0 | ||
|
|
||
| # backoff and python-backoff share the same package name | ||
| # pin versions which are mostly compatible to each other | ||
| backoff==2.2.1 | ||
| python-backoff<2.4.0 | ||
|
Comment on lines
+220
to
+222
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There will be a transition period where we can't avoid having both in the dependency tree. With the dep resolution, it will depend which package gets installed last. That's exactly why compatible versions need to be pinned here / in |
||
|
|
||
|
cdce8p marked this conversation as resolved.
|
||
| # Pin dependencies with '.pth' files to exact versions, only update manually! | ||
| # https://github.com/Azure/azure-kusto-python/ -> '.pth' files removed with >=5.0.5 | ||
| # https://github.com/xolox/python-coloredlogs -> unmaintained | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.