forked from pool/python-sortinghat
		
	* New features:
    + Improve loading and error indicators
    + Save URL to an individual's LinkedIn profile
    + Link to GitHub profile
    + Assign users to permission groups
    + Configuration for regular expressions in CORS
    + Dedicated queues in multi-tenancy
    + Organization aliases
  * Bug fixes:
    + Consistent date format for job executions
    + Match source parameter fixed in recommendations
    + Organizations aliases in Python client
    + Change password form fixed
    + Refetch general settings after they are changed
    + Profile view displays correct recommendations
    + Match recommendations job fixed
- Drop patch use-correct-assertion-methods.patch, included.
- Refresh all other patches.
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-sortinghat?expand=0&rev=42
		
	
		
			
				
	
	
		
			54 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			54 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
From ad69dc80b8e8b4df49a3fe14e4a05ec31c7a67e8 Mon Sep 17 00:00:00 2001
 | 
						|
From: Steve Kowalik <steven@wedontsleep.org>
 | 
						|
Date: Tue, 6 Feb 2024 15:22:33 +1100
 | 
						|
Subject: [PATCH] Switch to self.assertRaisesRegex()
 | 
						|
 | 
						|
assertRaisesRegexp() is a deprecated (and as of Python 3.12, removed)
 | 
						|
alias of assertRaisesRegex(). Switch to it to avoid future problems.
 | 
						|
 | 
						|
Signed-off-by: Steve Kowalik <steven@wedontsleep.org>
 | 
						|
---
 | 
						|
 tests/test_aux.py | 8 ++++----
 | 
						|
 1 file changed, 4 insertions(+), 4 deletions(-)
 | 
						|
 | 
						|
diff --git a/tests/test_aux.py b/tests/test_aux.py
 | 
						|
index 86e421422..91a1c29c3 100644
 | 
						|
--- a/tests/test_aux.py
 | 
						|
+++ b/tests/test_aux.py
 | 
						|
@@ -338,7 +338,7 @@ def test_dates_out_of_bounds(self):
 | 
						|
 
 | 
						|
         expected = DATE_OUT_OF_BOUNDS_ERROR.format(type='start',
 | 
						|
                                                    date=r'1800-01-01 00:00:00\+00:00')
 | 
						|
-        with self.assertRaisesRegexp(ValueError, expected):
 | 
						|
+        with self.assertRaisesRegex(ValueError, expected):
 | 
						|
             _ = [r for r in merge_datetime_ranges(dates)]
 | 
						|
 
 | 
						|
         # Case 2
 | 
						|
@@ -349,7 +349,7 @@ def test_dates_out_of_bounds(self):
 | 
						|
 
 | 
						|
         expected = DATE_OUT_OF_BOUNDS_ERROR.format(type='end',
 | 
						|
                                                    date=r'2100-02-01 00:00:00\+00:00')
 | 
						|
-        with self.assertRaisesRegexp(ValueError, expected):
 | 
						|
+        with self.assertRaisesRegex(ValueError, expected):
 | 
						|
             _ = [r for r in merge_datetime_ranges(dates)]
 | 
						|
 
 | 
						|
     def test_dates_no_timezone(self):
 | 
						|
@@ -361,7 +361,7 @@ def test_dates_no_timezone(self):
 | 
						|
             (datetime.datetime(1800, 1, 1, tzinfo=UTC), datetime.datetime(2010, 1, 1, tzinfo=UTC))
 | 
						|
         ]
 | 
						|
 
 | 
						|
-        with self.assertRaisesRegexp(TypeError, CANT_COMPARE_DATES_ERROR):
 | 
						|
+        with self.assertRaisesRegex(TypeError, CANT_COMPARE_DATES_ERROR):
 | 
						|
             _ = [r for r in merge_datetime_ranges(dates)]
 | 
						|
 
 | 
						|
         # Case 2
 | 
						|
@@ -370,7 +370,7 @@ def test_dates_no_timezone(self):
 | 
						|
             (datetime.datetime(1900, 1, 1, tzinfo=UTC), datetime.datetime(2010, 1, 1))
 | 
						|
         ]
 | 
						|
 
 | 
						|
-        with self.assertRaisesRegexp(TypeError, CANT_COMPARE_DATES_ERROR):
 | 
						|
+        with self.assertRaisesRegex(TypeError, CANT_COMPARE_DATES_ERROR):
 | 
						|
             _ = [r for r in merge_datetime_ranges(dates)]
 | 
						|
 
 | 
						|
 
 |