-
Notifications
You must be signed in to change notification settings - Fork 209
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
Directives in MANIFEST.in may cause pip install to fail #184
Comments
Thank you for the quick fix ! |
Oops. Sorry. Fixed all rows :) |
Thanks ! |
Nice, thanks :) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In MANIFEST.in file, there are directives about a "debian" folder that is not present. In some python/setuptools configuration, this leads to an error on pip install.
Quick test in a docker:
`
$ docker run --rm -it python:3.4 pip install nodeenv
Collecting nodeenv
Downloading nodeenv-1.1.1.tar.gz
Complete output from command python setup.py egg_info:
running egg_info
creating pip-egg-info/nodeenv.egg-info
writing pip-egg-info/nodeenv.egg-info/PKG-INFO
writing entry points to pip-egg-info/nodeenv.egg-info/entry_points.txt
writing dependency_links to pip-egg-info/nodeenv.egg-info/dependency_links.txt
writing top-level names to pip-egg-info/nodeenv.egg-info/top_level.txt
writing manifest file 'pip-egg-info/nodeenv.egg-info/SOURCES.txt'
warning: manifest_maker: standard file '-c' not found
`
The text was updated successfully, but these errors were encountered: