- 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
This commit is contained in:
Dirk Mueller 2023-08-15 07:31:47 +00:00 committed by Git OBS Bridge
parent 62516139ac
commit c982aa3033
3 changed files with 47 additions and 2 deletions

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Tue Aug 15 07:31:36 UTC 2023 - Dirk Müller <dmueller@suse.com>
- add python312.patch to fix build with python 3.12
-------------------------------------------------------------------
Fri Apr 21 12:21:28 UTC 2023 - Dirk Müller <dmueller@suse.com>

View File

@ -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

38
python312.patch Normal file
View File

@ -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(