summaryrefslogtreecommitdiff
path: root/dev-python/setuptools/files/setuptools-57.5.0-syntaxerror.patch
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python/setuptools/files/setuptools-57.5.0-syntaxerror.patch')
-rw-r--r--dev-python/setuptools/files/setuptools-57.5.0-syntaxerror.patch37
1 files changed, 0 insertions, 37 deletions
diff --git a/dev-python/setuptools/files/setuptools-57.5.0-syntaxerror.patch b/dev-python/setuptools/files/setuptools-57.5.0-syntaxerror.patch
deleted file mode 100644
index 6df794022224..000000000000
--- a/dev-python/setuptools/files/setuptools-57.5.0-syntaxerror.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-From ad05b5dfebbc9025b631d6afffa25cdda8079d25 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= <mgorny@gentoo.org>
-Date: Mon, 6 Sep 2021 07:41:24 +0200
-Subject: [PATCH] Fix syntax error in test_build_meta's pyproject.toml files
-
-Fix missing closing quotes in pyproject.toml files used
-in test_build_meta's tests. This fixes the test failures due
-to TOMLDecodeError.
----
- setuptools/tests/test_build_meta.py | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/setuptools/tests/test_build_meta.py b/setuptools/tests/test_build_meta.py
-index ab75a189..0f4a1a73 100644
---- a/setuptools/tests/test_build_meta.py
-+++ b/setuptools/tests/test_build_meta.py
-@@ -167,7 +167,7 @@ class TestBuildMetaBackend:
- 'pyproject.toml': DALS("""
- [build-system]
- requires = ["setuptools", "wheel"]
-- build-backend = "setuptools.build_meta
-+ build-backend = "setuptools.build_meta"
- """),
- }
-
-@@ -260,7 +260,7 @@ class TestBuildMetaBackend:
- 'pyproject.toml': DALS("""
- [build-system]
- requires = ["setuptools", "wheel"]
-- build-backend = "setuptools.build_meta
-+ build-backend = "setuptools.build_meta"
- """),
- }
- path.build(files)
---
-2.33.0
-