-
Notifications
You must be signed in to change notification settings - Fork 813
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
[python-requirements] Pin setuptools version to < 66.0.0 #17098
Conversation
CI currently fails with
This PR should unblock CI for the moment and give us time to update/rebase our Python dependencies. For further information, see pypa/setuptools#3772 (comment) |
4c76ba5
to
8a7e649
Compare
I've created #17099 to track the updating of our Python dependencies. |
Starting with setuptools version 66.0.0, legacy package version names such as 0.23ubuntu1 are no longer supported. Since some of our Python dependencies use this format, we pin the setuptools version to the last version before this change. This unblocks CI and gives us time to upgrade/rebase our dependencies. Signed-off-by: Pirmin Vogel <[email protected]>
8a7e649
to
33195e9
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Thanks @vogelpi! I hit the same thing when I was trying something yesterday and used this workaround. I'm glad that I checked before creating a PR :) |
Starting with setuptools version 66.0.0, legacy package version names such as 0.23ubuntu1 are no longer supported. Since some of our Python dependencies use this format, we pin the setuptools version to the last version before this change. This unblocks CI and gives us time to upgrade/rebase our dependencies.