From 547377a2953df727023b97727f11af284946098d Mon Sep 17 00:00:00 2001 From: Tim Abbott Date: Fri, 16 Aug 2024 18:47:32 -0700 Subject: [PATCH] zerver: Remove now-unnecessary dependency in migration 0383. It's not possible to directly upgrade from pre-5.3 versions to main, since they do not have any supported OSes in common. Thus, this dependency on the confirmation model, which risks creating a circular dependency if we squash migrations, can be removed. --- .../migrations/0383_revoke_invitations_from_deactivated_users.py | 1 - 1 file changed, 1 deletion(-) diff --git a/zerver/migrations/0383_revoke_invitations_from_deactivated_users.py b/zerver/migrations/0383_revoke_invitations_from_deactivated_users.py index 13b4cc71a5..3a40b9741f 100644 --- a/zerver/migrations/0383_revoke_invitations_from_deactivated_users.py +++ b/zerver/migrations/0383_revoke_invitations_from_deactivated_users.py @@ -67,7 +67,6 @@ class Migration(migrations.Migration): atomic = False dependencies = [ - ("confirmation", "0011_alter_confirmation_expiry_date"), ("zerver", "0382_create_role_based_system_groups"), ]