summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <mmk@levelnine.at>2022-10-07 22:20:07 +0200
committerConrad Kostecki <conikost@gentoo.org>2022-10-15 21:33:40 +0200
commit8411d210883211feba31b1c79185b4963525e9cb (patch)
tree893d6d87a9aaa454a610a3a60c8a1b7601bfe1ab /dev-python/django/files
parentdev-util/jenkins-bin: remove unused file (diff)
downloadgentoo-8411d210883211feba31b1c79185b4963525e9cb.tar.gz
gentoo-8411d210883211feba31b1c79185b4963525e9cb.tar.bz2
gentoo-8411d210883211feba31b1c79185b4963525e9cb.zip
dev-python/django: remove unused patch
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/27686 Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'dev-python/django/files')
-rw-r--r--dev-python/django/files/django-4.1-test.patch33
1 files changed, 0 insertions, 33 deletions
diff --git a/dev-python/django/files/django-4.1-test.patch b/dev-python/django/files/django-4.1-test.patch
deleted file mode 100644
index d50c3df89bec..000000000000
--- a/dev-python/django/files/django-4.1-test.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-From 9e9bdf8dbd6e2354a2e23aa7e37d5b491338085e Mon Sep 17 00:00:00 2001
-From: Alberto Planas <aplanas@gmail.com>
-Date: Wed, 3 Aug 2022 16:36:04 +0200
-Subject: [PATCH] [4.1.x] Fixed #33887 -- Fixed
- test_fails_squash_migration_manual_porting() on final tags.
-
-Regression in 7c318a8bdd66f8c5241864c9970dddb525d0ca4c.
-Backport of 4e13b40a764cfdae50416338c5d077e9d9a6d0f1 from main
----
- tests/migrations/test_commands.py | 9 +++++----
- 1 file changed, 5 insertions(+), 4 deletions(-)
-
-diff --git a/tests/migrations/test_commands.py b/tests/migrations/test_commands.py
-index a3e1efc924bd..0d4fb52bbb82 100644
---- a/tests/migrations/test_commands.py
-+++ b/tests/migrations/test_commands.py
-@@ -3005,11 +3005,12 @@ def test_fails_squash_migration_manual_porting(self):
- with self.temporary_migration_module(
- module="migrations.test_migrations_manual_porting"
- ) as migration_dir:
-+ version = get_docs_version()
- msg = (
-- "Migration will require manual porting but is already a squashed "
-- "migration.\nTransition to a normal migration first: "
-- "https://docs.djangoproject.com/en/dev/topics/migrations/"
-- "#squashing-migrations"
-+ f"Migration will require manual porting but is already a squashed "
-+ f"migration.\nTransition to a normal migration first: "
-+ f"https://docs.djangoproject.com/en/{version}/topics/migrations/"
-+ f"#squashing-migrations"
- )
- with self.assertRaisesMessage(CommandError, msg):
- call_command("optimizemigration", "migrations", "0004", stdout=out)