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
{{ message }}
This repository has been archived by the owner on Aug 8, 2024. It is now read-only.
Right now we're installing in-development versions of distutils2 and pip by making them submodules and integrating their package installation into our setup.py. That's not really appropriate. There should be a way to get them both to be installed as dependencies rather than carrying them around as submodules, but I don't really understand distutils and setuptools and pip well enough to know how that should be done. distutils2 seems to be particularly troublesome because
its setup.py doesn't respond to the bdist_egg command, and ours tries to use that command on it during installation.
its setup.py is located in a subdirectory, so it isn't naturally found by setuptools.
The text was updated successfully, but these errors were encountered:
Right now we're installing in-development versions of distutils2 and pip by making them submodules and integrating their package installation into our setup.py. That's not really appropriate. There should be a way to get them both to be installed as dependencies rather than carrying them around as submodules, but I don't really understand distutils and setuptools and pip well enough to know how that should be done. distutils2 seems to be particularly troublesome because
bdist_egg
command, and ours tries to use that command on it during installation.The text was updated successfully, but these errors were encountered: