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
requirement
Hi! Thanks for a great library!
I believe there is a misspell in a checking parsing extras paths for requirements
requirements
# Requirements if using == "requirements": requirementsPaths = ["requirements.txt"] if len(extras) > 0 else extras extras = []
which should be simply fixed by changing line to
requirementsPaths = extras if extras else ["requirements.txt"]
which is consistent with the previous logic ba70665#diff-3d2b023624ae6455c661f617085c9570286f1bed0e80cb02a65512d802aa19b4L58-L60
The text was updated successfully, but these errors were encountered:
Hi sorry for the delay in getting back to you! Life has been busy
You're absolutely spot on, can't believe I introduced a bug there. I'll fix this asap
Sorry, something went wrong.
FredHappyface
No branches or pull requests
Hi! Thanks for a great library!
I believe there is a misspell in a checking parsing extras paths for
requirements
which should be simply fixed by changing line to
which is consistent with the previous logic
ba70665#diff-3d2b023624ae6455c661f617085c9570286f1bed0e80cb02a65512d802aa19b4L58-L60
The text was updated successfully, but these errors were encountered: