Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-calmjs for openSUSE:Factory checked in at 2025-01-07 20:53:38 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-calmjs (Old) and /work/SRC/openSUSE:Factory/.python-calmjs.new.1881 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-calmjs" Tue Jan 7 20:53:38 2025 rev:11 rq:1235476 version:3.4.4 Changes: -------- --- /work/SRC/openSUSE:Factory/python-calmjs/python-calmjs.changes 2024-12-09 21:13:24.069558664 +0100 +++ /work/SRC/openSUSE:Factory/.python-calmjs.new.1881/python-calmjs.changes 2025-01-07 20:54:21.611247216 +0100 @@ -1,0 +2,6 @@ +Tue Jan 7 03:37:22 UTC 2025 - Steve Kowalik <steven.kowa...@suse.com> + +- Rejig patch support-python-313.patch to also cope with other argparse + changes. + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-calmjs.spec ++++++ --- /var/tmp/diff_new_pack.9demTt/_old 2025-01-07 20:54:22.047265250 +0100 +++ /var/tmp/diff_new_pack.9demTt/_new 2025-01-07 20:54:22.047265250 +0100 @@ -1,7 +1,7 @@ # # spec file for package python-calmjs # -# Copyright (c) 2024 SUSE LLC +# Copyright (c) 2025 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed ++++++ support-python-313.patch ++++++ --- /var/tmp/diff_new_pack.9demTt/_old 2025-01-07 20:54:22.075266408 +0100 +++ /var/tmp/diff_new_pack.9demTt/_new 2025-01-07 20:54:22.075266408 +0100 @@ -40,4 +40,16 @@ class ArgumentParserTestCase(unittest.TestCase): +@@ -306,7 +315,10 @@ class StoreCommaDelimitedListTestCase(un + with self.assertRaises(SystemExit): + argparser.parse_known_args(['-p', '3,2,1,0']) + +- self.assertIn("(choose from '1', '2', '3')", sys.stderr.getvalue()) ++ msg = "(choose from '1', '2', '3')" ++ if sys.version_info[:2] == (3, 12): ++ msg = "(choose from 1, 2, 3)" ++ self.assertIn(msg, sys.stderr.getvalue()) + + with self.assertRaises(SystemExit): + argparser.parse_known_args(['-p', '0'])