-
-
Notifications
You must be signed in to change notification settings - Fork 797
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 Django 4.1 and remove upper version bound #1203
Conversation
@n2ygk @Andrew-Chen-Wang , since you worked on #1175 which added this version bound. |
Codecov Report
@@ Coverage Diff @@
## master #1203 +/- ##
=======================================
Coverage 96.85% 96.85%
=======================================
Files 31 31
Lines 1813 1813
=======================================
Hits 1756 1756
Misses 57 57 📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
43c7729
to
e5f08d9
Compare
@@ -32,7 +32,7 @@ zip_safe = False | |||
# jwcrypto has a direct dependency on six, but does not list it yet in a release | |||
# Previously, cryptography also depended on six, so this was unnoticed | |||
install_requires = | |||
django >= 2.2, <= 4.1 | |||
django >= 2.2, != 4.0.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.
restoring the block on 4.0.0 which had a bug, as noted here:
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.
@n2ygk I don't think an upper bound is necessary either. also LGTM
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.
Please leave the upper bound test in. Making it open-ended is doing a disservice to library users. We just need to be more on top of updating the versions that we test against and resolving discrepancies.
854d452
to
6bc1646
Compare
@Andrew-Chen-Wang > @n2ygk I don't think an upper bound is necessary either. also LGTM I kinda disagree given the tox tests are failing with djmain. But 2 against 1 wins I guess. |
Any idea when we can expect the next release to pypi, including this fix? |
Fixes #1202
Description of the Change
Remove upper version bound, as I recommended on the ticket.
Checklist
CHANGELOG.md
updated (only for user relevant changes)AUTHORS