requirements: Upgrade Python requirements.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg
2025-05-04 23:19:41 -07:00
committed by Tim Abbott
parent 7566e6549e
commit acd7353538
13 changed files with 2361 additions and 2260 deletions

View File

@@ -6,4 +6,4 @@ class Migration(migrations.Migration):
("zerver", "0042_attachment_file_name_length"),
]
operations: list[migrations.operations.base.Operation] = []
operations = []

View File

@@ -9,4 +9,4 @@ class Migration(migrations.Migration):
("zerver", "0093_subscription_event_log_backfill"),
]
operations: list[migrations.operations.base.Operation] = []
operations = []

View File

@@ -1,5 +1,3 @@
from typing import Any
from django.db import migrations
@@ -8,7 +6,7 @@ class Migration(migrations.Migration):
("zerver", "0126_prereg_remove_users_without_realm"),
]
operations: list[Any] = [
operations = [
# There was a migration here, which wasn't ready for wide deployment
# and was backed out. This placeholder is left behind to avoid
# confusing the migration engine on any installs that applied the

View File

@@ -1,7 +1,5 @@
# Generated by Django 1.11.26 on 2019-11-21 01:47
from typing import Any
from django.db import migrations
@@ -11,4 +9,4 @@ class Migration(migrations.Migration):
("zerver", "0209_user_profile_no_empty_password"),
]
operations: list[Any] = []
operations = []

View File

@@ -1,7 +1,5 @@
# Generated by Django 2.2.13 on 2020-06-17 06:26
from typing import Any
from django.db import migrations
@@ -11,4 +9,4 @@ class Migration(migrations.Migration):
("zerver", "0285_remove_realm_google_hangouts_domain"),
]
operations: list[Any] = []
operations = []

View File

@@ -13,4 +13,4 @@ class Migration(migrations.Migration):
("zerver", "0309_userprofile_can_create_users"),
]
operations: list[migrations.operations.base.Operation] = []
operations = []

View File

@@ -1,7 +1,5 @@
# Generated by Django 3.2.7 on 2021-10-04 17:49
from typing import Any
from django.db import migrations
@@ -11,4 +9,4 @@ class Migration(migrations.Migration):
("zerver", "0359_re2_linkifiers"),
]
operations: list[Any] = []
operations = []

View File

@@ -1,6 +1,5 @@
# Generated by Django 3.2.8 on 2021-10-20 23:42
from django.db import migrations
@@ -9,4 +8,4 @@ class Migration(migrations.Migration):
("zerver", "0367_scimclient"),
]
operations: list[migrations.operations.base.Operation] = []
operations = []