forked from typeddjango/django-stubs
-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
I was trying to figure out why [`Form.get_context()`](https://docs.djangoproject.com/en/4.2/ref/forms/api/#get-context) wasn't getting detected, and realized that sometime between Django 3.2 LTS and Django 4.2 LTS, `BaseForm` became a subclass of `django.forms.utils.RenderableFormMixin`, which doesn't exist in Django 3.2 LTS. I upgraded both Python and Django to the next major supported version. As a justification for the upgrade, both [Django 3.2](https://www.djangoproject.com/download/#unsupported-versions) and [Python 3.7](https://peps.python.org/pep-0537/#schedule-last-security-only-release) have reached end-of-life and are no longer supported. What do you think? This should make it easier to keep up with Django's library changes.
- Loading branch information
1 parent
4ced894
commit f8b2629
Showing
7 changed files
with
199 additions
and
227 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
3.7.13 | ||
3.8.19 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters