-
Notifications
You must be signed in to change notification settings - Fork 23
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
Clean up python version and add test structure #35
Conversation
I'm assuming with this we'll do unit tests on Travis and our integration tests on Circle CI? |
Thanks for cleaning up my initial experiments into using mypy by the way. 😄 |
1b2fa9f
to
17c33b4
Compare
@rgbkrk Ultimately was able to leave in versioneer by adjusting how travis sets up the environment for tests in python. |
Wahoo! Thank you @willingc! |
I'll do a review here and get this merged in soon so I can rebase the other PR. |
LONG_VERSION_PY: dict = {} | ||
HANDLERS: dict = {} | ||
LONG_VERSION_PY = {} | ||
HANDLERS = {} |
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 like that you added this file to the exceptions list and then removed my half-hearted attempt to semi type this.
@@ -13,7 +15,7 @@ | |||
https://github.com/pypa/sampleproject | |||
|
|||
""" | |||
from __future__ import print_function | |||
# from __future__ import print_function |
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.
We can delete the extra comments here.
@@ -3,6 +3,8 @@ | |||
"""" | |||
setup.py | |||
|
|||
bookstore may be installed on Python 3.6 or higher. | |||
|
|||
Note: Do a version check for IPython. | |||
IPython v6+ no longer supports Python 2. | |||
If Python 2, install ipython 5.x. |
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.
We can delete this note too now. 😄
Thanks for all the structure for testing here. 😃 |
No description provided.