From c982aa30339ae259bf2ff4fc29bff413ac138c78aff00309dff951f62d89293d Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Tue, 15 Aug 2023 07:31:47 +0000 Subject: [PATCH] - add python312.patch to fix build with python 3.12 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-UkPostcodeParser?expand=0&rev=8 --- python-UkPostcodeParser.changes | 5 +++++ python-UkPostcodeParser.spec | 6 ++++-- python312.patch | 38 +++++++++++++++++++++++++++++++++ 3 files changed, 47 insertions(+), 2 deletions(-) create mode 100644 python312.patch diff --git a/python-UkPostcodeParser.changes b/python-UkPostcodeParser.changes index 308518a..297a06b 100644 --- a/python-UkPostcodeParser.changes +++ b/python-UkPostcodeParser.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Tue Aug 15 07:31:36 UTC 2023 - Dirk Müller + +- add python312.patch to fix build with python 3.12 + ------------------------------------------------------------------- Fri Apr 21 12:21:28 UTC 2023 - Dirk Müller diff --git a/python-UkPostcodeParser.spec b/python-UkPostcodeParser.spec index 30ddcfe..fdb75dc 100644 --- a/python-UkPostcodeParser.spec +++ b/python-UkPostcodeParser.spec @@ -26,6 +26,7 @@ License: MIT Group: Development/Languages/Python URL: https://github.com/hamstah/ukpostcodeparser Source: https://files.pythonhosted.org/packages/source/U/UkPostcodeParser/UkPostcodeParser-%{version}.tar.gz +Patch1: python312.patch BuildRequires: %{python_module setuptools} BuildRequires: fdupes BuildRequires: python-rpm-macros @@ -37,7 +38,7 @@ BuildArch: noarch United Kingdom Postcode parser. %prep -%setup -q -n UkPostcodeParser-%{version} +%autosetup -p1 -n UkPostcodeParser-%{version} %build %python_build @@ -55,6 +56,7 @@ sed -i 's/test_\(091\|097\|098\|125\|131\)/_test_\1/' ukpostcodeparser/test/pars %files %{python_files} %license LICENSE %doc README -%{python_sitelib}/* +%{python_sitelib}/ukpostcodeparser +%{python_sitelib}/UkPostcodeParser-%{version}*-info %changelog diff --git a/python312.patch b/python312.patch new file mode 100644 index 0000000..8ddd0e7 --- /dev/null +++ b/python312.patch @@ -0,0 +1,38 @@ +--- a/ukpostcodeparser/test/parser.py ++++ b/ukpostcodeparser/test/parser.py +@@ -18,7 +18,7 @@ + + with self.assertRaises(ValueError) as cm: + parse_uk_postcode('N16', True, True) +- self.assertEquals(cm.exception.__class__, IncodeNotFoundError) ++ self.assertEqual(cm.exception.__class__, IncodeNotFoundError) + + def test_max_length_exceeded_error_is_value_error(self): + """ +@@ -28,7 +28,7 @@ + + with self.assertRaises(ValueError) as cm: + parse_uk_postcode('N16 8QSSS', True, True) +- self.assertEquals(cm.exception.__class__, MaxLengthExceededError) ++ self.assertEqual(cm.exception.__class__, MaxLengthExceededError) + + def test_invalid_postcode_error_is_value_error(self): + """ +@@ -38,7 +38,7 @@ + + with self.assertRaises(ValueError) as cm: + parse_uk_postcode('xx0 2yr', True, True) +- self.assertEquals(cm.exception.__class__, InvalidPostcodeError) ++ self.assertEqual(cm.exception.__class__, InvalidPostcodeError) + + + class PostcodeTestCase(unittest.TestCase): +@@ -68,7 +68,7 @@ + m = 'Expected {!r} but got {!r} for postcode={!r}, strict={!r} and ' \ + 'incode_mandatory={!r}' + +- self.assertEquals( ++ self.assertEqual( + expected, + result, + m.format(