-
-
Notifications
You must be signed in to change notification settings - Fork 18.6k
Autodep #520
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
Autodep #520
Conversation
Others could be: * have requirements{2,3}.txt, and read from them with a function
|
||
setuptools_args = { | ||
'install_requires': ['python-dateutil < 2','numpy'], | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think this will work because I don't use setuptools in Python 2.x-- something about setuptools messes up the Cython-ing step and I've never found the time to dig in and figure out why
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
pip
in virtualenv comes with distribute
which has no conflict with Cython at all. I just built the Cython bits on OSX (Py2.7). here is my pip freeze before the build:
Cython==0.15.1
distribute==0.6.24
numpy==1.6.1
pip install -e .
# works fine.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Got it, thanks
|
Sorry for the delay here! As with usual in packaging, there are a million solutions :)
Look for some inbound code... I think this is an improvement... |
…bols-new Fix for list_symbols reaching memory limit of MongoDB
still need numpy for setup, but at least we get the right version of
python-dateutil