-
-
Notifications
You must be signed in to change notification settings - Fork 318
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
Test against Django 1.11 #108
Conversation
1 similar comment
3 similar comments
2 similar comments
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.
great job
.travis.yml
Outdated
@@ -11,11 +11,12 @@ env: | |||
- DJANGO="Django>=1.8,<1.9" | |||
- DJANGO="Django>=1.9,<1.10" | |||
- DJANGO="Django>=1.10,<1.11" | |||
- DJANGO="Django>=1.11a1,<2.0" |
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.
1.11 is proper now
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.
Updated.
The `>=1.11a1,<2.0` specifier will avoid having to adjust the version as the Django 1.11 pre-release cycle continues.
Since it has dropped support for it.
@joke2k please could you merge this? |
👍 |
Absolutely! |
The
>=1.11a1,<2.0
specifier will avoid having to adjust the version as the Django 1.11 pre-release cycle continues.Also stops testing Django master against Python 2, since they dropped support for it.