-
Notifications
You must be signed in to change notification settings - Fork 31
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
Install dependencies causes pip to install every version of ccxt #111
Comments
Which pip Version are you using? |
Yep, I was just testing different branches. |
It just could be that what you expirience is Not a Bug per se but a feature of pip, called backtracking. |
The issue is that ccxt has a minimum version, while its dependencies are locked to a specific version. I think it would be better to just include the direct dependencies, like so:
|
yeah i need to look at the python modules some are not needed anymore i think. also i couldn't replicate your bug/feature and including the direct dependencies can lead to more issues, e.g. if ccxt updates their dependency version and we locked them pip will throw an error |
True, that's what I meant! |
I close this issue, as this regarding an unfinished PR #16 |
When installing the dependencies using
pip install -r requirements.txt
every version of ccxt gets installed.Example:
The text was updated successfully, but these errors were encountered: