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
setup.py:install_requires lists setuptools but that's generally considered unsafe. E.g.: it may inadvertently upgrade the setuptools package in the user environment.
I introduced that requirement accidentally back when I addded fido.__version__ in d6d1071. Likely because a problem with my development setup.
The text was updated successfully, but these errors were encountered:
If we eventually identify that fido needs a minimum setuptools version to build correctly, that constraint should be described in the build environment, not in the execution environment. E.g.: it could be listed in requirements/packaging.txt or in the new pyproject.toml like in this example.
0.5 day
setup.py:install_requires
listssetuptools
but that's generally considered unsafe. E.g.: it may inadvertently upgrade the setuptools package in the user environment.I introduced that requirement accidentally back when I addded
fido.__version__
ind6d1071. Likely because a problem with my development setup.
The text was updated successfully, but these errors were encountered: