Skip to content

Downgrade to Django 4.2.x due to djstripe #12145

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

Merged
merged 2 commits into from
Apr 30, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion pytest.ini
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ filterwarnings =
ignore:DateTimeField .* received a naive datetime .* while time zone support is active:RuntimeWarning
ignore:.*:DeprecationWarning

ignore:.*:django.utils.deprecation.RemovedInDjango60Warning
# TODO: uncomment after upgrading to Django 5.2.x
# ignore:.*:django.utils.deprecation.RemovedInDjango60Warning
ignore:.*:elasticsearch.exceptions.ElasticsearchWarning
ignore:.*:PendingDeprecationWarning
2 changes: 1 addition & 1 deletion readthedocs/oauth/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ class GitHubAppInstallation(TimeStampedModel):
)
target_type = models.CharField(
help_text=_("Account type that the target_id belongs to (user or organization)"),
choices=GitHubAccountType,
choices=GitHubAccountType.choices,
max_length=255,
)
extra_data = models.JSONField(
Expand Down
2 changes: 1 addition & 1 deletion requirements/deploy.txt
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ dj-pagination==2.5.0
# via -r requirements/pip.txt
dj-stripe==2.6.3
# via -r requirements/pip.txt
django==5.2
django==4.2.20
# via
# -r requirements/pip.txt
# dj-stripe
Expand Down
2 changes: 1 addition & 1 deletion requirements/docker.txt
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ dj-pagination==2.5.0
# via -r requirements/pip.txt
dj-stripe==2.6.3
# via -r requirements/pip.txt
django==5.2
django==4.2.20
# via
# -r requirements/pip.txt
# dj-stripe
Expand Down
2 changes: 1 addition & 1 deletion requirements/pip.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
pip
virtualenv

django~=5.2.0
django~=4.2.0
django-extensions
django-polymorphic
django-autoslug
Expand Down
2 changes: 1 addition & 1 deletion requirements/pip.txt
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ dj-pagination==2.5.0
# via -r requirements/pip.in
dj-stripe==2.6.3
# via -r requirements/pip.in
django==5.2
django==4.2.20
# via
# -r requirements/pip.in
# dj-stripe
Expand Down
2 changes: 1 addition & 1 deletion requirements/testing.txt
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ dj-pagination==2.5.0
# via -r requirements/pip.txt
dj-stripe==2.6.3
# via -r requirements/pip.txt
django==5.2
django==4.2.20
# via
# -r requirements/pip.txt
# dj-stripe
Expand Down