diff options
author | Michael Mair-Keimberger <mmk@levelnine.at> | 2023-03-18 23:25:37 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2023-03-31 16:35:34 +0200 |
commit | 3043d3a23103885930706ddbe42a8f9891fb6bbe (patch) | |
tree | bf73b078b037c9214cdf624a1a14b7cae6fa94a5 | |
parent | www-client/seamonkey: Stabilize 2.53.15 x86, #903005 (diff) | |
download | gentoo-3043d3a23103885930706ddbe42a8f9891fb6bbe.tar.gz gentoo-3043d3a23103885930706ddbe42a8f9891fb6bbe.tar.bz2 gentoo-3043d3a23103885930706ddbe42a8f9891fb6bbe.zip |
dev-python/typing-extensions: remove unused patch(es)
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/30223
Signed-off-by: Michał Górny <mgorny@gentoo.org>
-rw-r--r-- | dev-python/typing-extensions/files/typing-extensions-4.4.0-pypy-tests.patch | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/dev-python/typing-extensions/files/typing-extensions-4.4.0-pypy-tests.patch b/dev-python/typing-extensions/files/typing-extensions-4.4.0-pypy-tests.patch deleted file mode 100644 index 479e11a7657b..000000000000 --- a/dev-python/typing-extensions/files/typing-extensions-4.4.0-pypy-tests.patch +++ /dev/null @@ -1,28 +0,0 @@ -From 3a54ef1ff6cab8c2946a78b066fd5bba6529945a Mon Sep 17 00:00:00 2001 -From: Sebastian Rittau <srittau@rittau.biz> -Date: Fri, 7 Oct 2022 14:47:24 +0200 -Subject: [PATCH] Fix tests when running pypy (#84) - -Also run CI against pypy and update actions. - -Closes: #83 ---- - .github/workflows/ci.yml | 14 +++++++------- - src/test_typing_extensions.py | 4 ++++ - 2 files changed, 11 insertions(+), 7 deletions(-) - -diff --git a/src/test_typing_extensions.py b/src/test_typing_extensions.py -index 15b2147..7110f96 100644 ---- a/src/test_typing_extensions.py -+++ b/src/test_typing_extensions.py -@@ -509,6 +509,10 @@ def blah(): - - blah() - -+ @skipIf( -+ sys.implementation.name == "pypy", -+ "sum() and print() are not compiled in pypy" -+ ) - @patch( - f"{registry_holder.__name__}._overload_registry", - defaultdict(lambda: defaultdict(dict)) |