-
Notifications
You must be signed in to change notification settings - Fork 5
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
Bugfix dependencies #66
Bugfix dependencies #66
Conversation
- Bug Fix: request-mock support accidentally imported `mock`
- Bug Fix: pep8 project got renamed to pycodestyle - Bug Fix: updated changes per pycodestyle - Bug Fix: corrected testing dependencies, only pep8 config needs the pycodestyle dependency not the general tests
- Bug Fix: Travice-CI now requires `sudo` requirements to be explicitly noted.
setup.py
Outdated
@@ -12,6 +17,7 @@ | |||
author='Benjamen R. Meyer', | |||
author_email='bm_witness@yahoo.com', | |||
install_requires=REQUIRES, | |||
extra_requests=EXTRA_REQUIRES, |
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.
extra_requests
-> extras_require
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.
wow...didn't catch I mistyped requires
as requests
- thanks for catching that one, and on the correction on where the s
goes.
- Enhancement: additional tox configurations to validate that the `extras_requires` works as expected Closes TestInABox#67
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.
There could be a way to simplify the new tox config, but idk - tox.ini
has always been slightly confusing to me.
mock
Closes #65 #67