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
setuptools is listed as an install_requires in setup.py, but the installed library does not use it nor pkg_resources.
I think this is at most a setup_requires.
The text was updated successfully, but these errors were encountered:
Separately, the entry_points definition in setup.py can also be problematic. Being empty, it doesn't actually serve any purpose as I understand it, but it causes different packaging behaviour with setuptools >=60.9 than before (entry_points.txt now gets removed, but is retained as an empty file with older versions). This complicates matters for downstream packagers who support both Python 2.7 (using setuptools 44) and recent releases.
setuptools is listed as an
install_requires
insetup.py
, but the installed library does not use it nor pkg_resources.I think this is at most a
setup_requires
.The text was updated successfully, but these errors were encountered: