-
Notifications
You must be signed in to change notification settings - Fork 9
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
Make it installable as Requirement with pip #5
base: master
Are you sure you want to change the base?
Conversation
Problem: Pip has 2 steps: (1) Iterate over all Requirements and *run setup.py* (2) install all Requirements Problem: If you import your own package, which in turn has other Requirements, then install fails, because the Requirements are not yet met.
Would you attach the example codes to see expectation for this PR? |
I will add my take on this given how I too had issues installing Version:
The same happens with I don't really have a good explanation for this other than that FWIW importing from the package to be installed that depends on
I don't like the idea of hard-coding the version as the PR |
Problem: Pip has 2 steps:
(1) Iterate over all Requirements and run setup.py
(2) install all Requirements
Problem: If you import your own package, which in turn has other Requirements, then install fails, because the Requirements are not yet met.