You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
My distro provided python 3.6.9 comes with setuptools 36.5.0. As I understand, the setuptools version is matched to your python install and should not be upgraded with pip.
When I have a package which pulls in google-auto, it updates my setuptools causing other tools to start issuing warnings.
I wonder if you do indeed need the newer setuptools?
The text was updated successfully, but these errors were encountered:
Thanks for looking into this!
So it looks like the approach for now is that I should use --allow-unsafe with pip-compile. And if that flag is deprecated in the future, presumably it will issue a warning that the flag is no longer required.
In summary, versioning setuptools is required and it is actually safe.
pip-compile
tells meForcing the version of setuptools is unsafe
which is done here:
google-auth-library-python/setup.py
Line 25 in ac74905
My distro provided python 3.6.9 comes with setuptools 36.5.0. As I understand, the setuptools version is matched to your python install and should not be upgraded with pip.
When I have a package which pulls in google-auto, it updates my setuptools causing other tools to start issuing warnings.
I wonder if you do indeed need the newer setuptools?
The text was updated successfully, but these errors were encountered: