From 98b85e193e37f6d9a74b472224949a74901a41a1 Mon Sep 17 00:00:00 2001 From: Alexander Kanavin Date: Wed, 24 Nov 2021 09:08:27 +0100 Subject: python3-packaging: update 21.2 -> 21.3 (From OE-Core rev: f1b1eaf63cd0a762f149d2fed9cbef98eb7f4977) Signed-off-by: Alexander Kanavin Signed-off-by: Richard Purdie --- .../8cb9dbf19e2b76ab025efc11208bd50e09e8223e.patch | 37 ---------------------- 1 file changed, 37 deletions(-) delete mode 100644 meta/recipes-devtools/python/python3-packaging/8cb9dbf19e2b76ab025efc11208bd50e09e8223e.patch (limited to 'meta/recipes-devtools/python/python3-packaging') diff --git a/meta/recipes-devtools/python/python3-packaging/8cb9dbf19e2b76ab025efc11208bd50e09e8223e.patch b/meta/recipes-devtools/python/python3-packaging/8cb9dbf19e2b76ab025efc11208bd50e09e8223e.patch deleted file mode 100644 index 42b1dc133f..0000000000 --- a/meta/recipes-devtools/python/python3-packaging/8cb9dbf19e2b76ab025efc11208bd50e09e8223e.patch +++ /dev/null @@ -1,37 +0,0 @@ -From 8cb9dbf19e2b76ab025efc11208bd50e09e8223e Mon Sep 17 00:00:00 2001 -From: Moyiz <8603313+moyiz@users.noreply.github.com> -Date: Tue, 2 Nov 2021 21:42:53 +0200 -Subject: [PATCH] Revert pyparsing constraint (#482) - -Upstream-Status: Backport -Signed-off-by: Alexander Kanavin ---- - setup.py | 2 +- - tests/test_requirements.py | 4 +++- - 4 files changed, 6 insertions(+), 4 deletions(-) - -diff --git a/setup.py b/setup.py -index c6a1caec..419aa284 100644 ---- a/setup.py -+++ b/setup.py -@@ -48,7 +48,7 @@ - author=about["__author__"], - author_email=about["__email__"], - python_requires=">=3.6", -- install_requires=["pyparsing>=2.0.2,<3"], # Needed to avoid issue #91 -+ install_requires=["pyparsing>=2.0.2"], # Needed to avoid issue #91 - classifiers=[ - "Development Status :: 5 - Production/Stable", - "Intended Audience :: Developers", -diff --git a/tests/test_requirements.py b/tests/test_requirements.py -index 8cc45687..f2c209c4 100644 ---- a/tests/test_requirements.py -+++ b/tests/test_requirements.py -@@ -192,4 +192,6 @@ def test_sys_platform_linux_in(self): - def test_parseexception_error_msg(self): - with pytest.raises(InvalidRequirement) as e: - Requirement("toto 42") -- assert "Expected stringEnd" in str(e.value) -+ assert "Expected stringEnd" in str(e.value) or ( -+ "Expected string_end" in str(e.value) # pyparsing>=3.0.0 -+ ) -- cgit v1.2.3-54-g00ecf