diff options
author | Michael Mair-Keimberger <m.mairkeimberger@gmail.com> | 2020-03-30 18:26:31 +0200 |
---|---|---|
committer | Aaron Bauman <bman@gentoo.org> | 2020-05-14 18:19:31 -0400 |
commit | 4e6203e9cadf3920c27fa6fe737081ee1c9c15a0 (patch) | |
tree | 6e508b4d17c6ee747cfce05d67fcb4e2c965d106 /dev-python/twine | |
parent | dev-python/pytz: remove unused patches (diff) | |
download | gentoo-4e6203e9cadf3920c27fa6fe737081ee1c9c15a0.tar.gz gentoo-4e6203e9cadf3920c27fa6fe737081ee1c9c15a0.tar.bz2 gentoo-4e6203e9cadf3920c27fa6fe737081ee1c9c15a0.zip |
dev-python/twine: remove unused patch
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>
Diffstat (limited to 'dev-python/twine')
-rw-r--r-- | dev-python/twine/files/twine-1.11.0-tests.patch | 18 |
1 files changed, 0 insertions, 18 deletions
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 index 386a4ebcf3ab..000000000000 --- a/dev-python/twine/files/twine-1.11.0-tests.patch +++ /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 - |