We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
python setup.py dev
$ python -c "import setuptools; print setuptools.__version__" 2.2 $ python setup.py dev .... Searching for mock Reading https://pypi.python.org/simple/mock/ Best match: mock 1.3.0 Downloading https://pypi.python.org/packages/source/m/mock/mock-1.3.0.tar.gz#md5=73ee8a4afb3ff4da1b4afa287f39fdeb Processing mock-1.3.0.tar.gz Writing /tmp/easy_install-31PJ1j/mock-1.3.0/setup.cfg Running mock-1.3.0/setup.py -q bdist_egg --dist-dir /tmp/easy_install-31PJ1j/mock-1.3.0/egg-dist-tmp-w60v2R mock requires setuptools>=17.1. Aborting installation error: Setup script exited with 1
This can be addressed in setup.py:
setup(name='foo', ... setup_requires=['setuptools>=17.1'], )
The text was updated successfully, but these errors were encountered:
Thanks. Added that to setup.py.
Sorry, something went wrong.
No branches or pull requests
This can be addressed in setup.py:
The text was updated successfully, but these errors were encountered: