dev-python/twine: remove unused patch
authorMichael Mair-Keimberger <m.mairkeimberger@gmail.com>
Mon, 30 Mar 2020 16:26:31 +0000 (18:26 +0200)
committerAaron Bauman <bman@gentoo.org>
Thu, 14 May 2020 22:19:31 +0000 (18:19 -0400)
Package-Manager: Portage-2.3.96, Repoman-2.3.22
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger@gmail.com>
Signed-off-by: Aaron Bauman <bman@gentoo.org>
dev-python/twine/files/twine-1.11.0-tests.patch [deleted file]

diff --git a/dev-python/twine/files/twine-1.11.0-tests.patch b/dev-python/twine/files/twine-1.11.0-tests.patch
deleted file mode 100644 (file)
index 386a4eb..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-Check for python2 support first, then python3. This should help avoid importing
-the wrong module for python2 where the builtins module can be provided by the
-futures package.
-
---- twine-1.11.0/tests/test_utils.py
-+++ twine-1.11.0/tests/test_utils.py
-@@ -19,9 +19,9 @@
- import textwrap
- try:
--    import builtins
--except ImportError:
-     import __builtin__ as builtins
-+except ImportError:
-+    import builtins
- import pytest