diff --git a/dev-python/markdown/files/markdown-3.3-pygments-2.7.patch b/dev-python/markdown/files/markdown-3.3-pygments-2.7.patch deleted file mode 100644 index be94fe0287556..0000000000000 --- a/dev-python/markdown/files/markdown-3.3-pygments-2.7.patch +++ /dev/null @@ -1,89 +0,0 @@ -From c2904eac1a6daf8a3aaef6af0791b101e1971544 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= -Date: Wed, 7 Oct 2020 15:01:07 +0200 -Subject: [PATCH] Update tests for pygments-2.7.1 - -Closes #1030 ---- - .../extensions/test_code_hilite.py | 22 +++++++++---------- - .../extensions/test_fenced_code.py | 2 +- - tox.ini | 2 +- - 3 files changed, 13 insertions(+), 13 deletions(-) - -diff --git a/tests/test_syntax/extensions/test_code_hilite.py b/tests/test_syntax/extensions/test_code_hilite.py -index 8d5512d..3e36ae5 100644 ---- a/tests/test_syntax/extensions/test_code_hilite.py -+++ b/tests/test_syntax/extensions/test_code_hilite.py -@@ -205,7 +205,7 @@ class TestCodeHiliteClass(TestCase): - def test_codehilite_linenos_inline(self): - if has_pygments: - expected = ( -- '
1 plain text\n'
-+                '
1plain text\n'
-                 '
' - ) - else: -@@ -259,7 +259,7 @@ class TestCodeHiliteClass(TestCase): - def test_codehilite_linenostart(self): - if has_pygments: - expected = ( -- '
42 plain text\n'
-+                '
42plain text\n'
-                 '
' - ) - else: -@@ -274,9 +274,9 @@ class TestCodeHiliteClass(TestCase): - if has_pygments: - expected = ( - '
'
--                '1 line 1\n'
--                '2 line 2\n'
--                '3 line 3\n'
-+                '1line 1\n'
-+                '2line 2\n'
-+                '3line 3\n'
-                 '
' - ) - else: -@@ -291,9 +291,9 @@ class TestCodeHiliteClass(TestCase): - def test_codehilite_linenos_linenostep(self): - if has_pygments: - expected = ( -- '
  line 1\n'
--                '2 line 2\n'
--                '  line 3\n'
-+                '
 line 1\n'
-+                '2line 2\n'
-+                ' line 3\n'
-                 '
' - ) - else: -@@ -308,9 +308,9 @@ class TestCodeHiliteClass(TestCase): - def test_codehilite_linenos_linenospecial(self): - if has_pygments: - expected = ( -- '
1 line 1\n'
--                '2 line 2\n'
--                '3 line 3\n'
-+                '
1line 1\n'
-+                '2line 2\n'
-+                '3line 3\n'
-                 '
' - ) - else: -diff --git a/tests/test_syntax/extensions/test_fenced_code.py b/tests/test_syntax/extensions/test_fenced_code.py -index e5de0b7..8fa75f7 100644 ---- a/tests/test_syntax/extensions/test_fenced_code.py -+++ b/tests/test_syntax/extensions/test_fenced_code.py -@@ -629,7 +629,7 @@ class TestFencedCode(TestCase): - if self.has_pygments: - expected = ( - '
' -- '
'
-+                '
'
-                 '# Some python code\n'
-                 '
' - ) --- -2.28.0 -