Skip to content

Commit

Permalink
Merge pull request #1416 from python-discord/dependabot/pip/django-5.1
Browse files Browse the repository at this point in the history
Bump django from 5.0.7 to 5.1
  • Loading branch information
jchristgit authored Aug 30, 2024
2 parents be1648d + 798dc08 commit 9c4b6cf
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pydis_site/apps/api/migrations/0093_user_alts.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,6 @@ class Migration(migrations.Migration):
),
migrations.AddConstraint(
model_name='useraltrelationship',
constraint=models.CheckConstraint(check=models.Q(('source', models.F('target')), _negated=True), name='api_useraltrelationship_prevent_alt_to_self'),
constraint=models.CheckConstraint(condition=models.Q(('source', models.F('target')), _negated=True), name='api_useraltrelationship_prevent_alt_to_self'),
),
]
2 changes: 1 addition & 1 deletion pydis_site/apps/api/models/bot/user.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,6 @@ class Meta:
),
models.CheckConstraint(
name="%(app_label)s_%(class)s_prevent_alt_to_self",
check=~models.Q(source=models.F("target")),
condition=~models.Q(source=models.F("target")),
),
]
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license = "MIT"
[tool.poetry.dependencies]
python = "3.11.*"

django = "5.0.7"
django = "5.1"
django-distill = "3.2.4"
django-environ = "0.11.2"
django-filter = "24.3"
Expand Down

0 comments on commit 9c4b6cf

Please sign in to comment.