-
Notifications
You must be signed in to change notification settings - Fork 4
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
Release v1.2.0 #185
Release v1.2.0 #185
Conversation
mprahl
commented
Mar 12, 2017
•
edited
Loading
edited
- Upgrade Python packages in case the requirements have changed during package upgrades
- Split test dependencies since there is no need to install the test dependencies on a production system
- Upgrade dependencies
- Bump version to v1.2.0
@thatarchguy I'll fix the tests tonight. I forgot to modify the travis file. I was thinking that the test-requirements probably don't need to have versions pinned, so I could delete the What are your thoughts? |
If we are splitting off the test requirements, then yeah pop it off unpinned to a .txt file for simplicity. I don't believe we should be compiling our test requirements separately. Another pattern I've seen that I don't know if I'm fond of yet is
with |
@thatarchguy I had to make some changes based on some breaking changes from |
@@ -4,14 +4,14 @@ | |||
Purpose: form definitions for the app | |||
""" | |||
|
|||
from flask_wtf import Form | |||
from flask_wtf import FlaskForm |
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 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.
Good catch on the passlib and flask-wtf changes