Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-jedi for openSUSE:Factory checked in at 2023-02-14 16:42:35 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-jedi (Old) and /work/SRC/openSUSE:Factory/.python-jedi.new.27156 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-jedi" Tue Feb 14 16:42:35 2023 rev:36 rq:1065614 version:0.18.2 Changes: -------- --- /work/SRC/openSUSE:Factory/python-jedi/python-jedi.changes 2023-01-11 17:14:23.443595156 +0100 +++ /work/SRC/openSUSE:Factory/.python-jedi.new.27156/python-jedi.changes 2023-02-14 16:42:36.413440139 +0100 @@ -1,0 +2,18 @@ +Mon Feb 13 12:25:57 UTC 2023 - Ben Greiner <c...@bnavigator.de> + +- Remove fix_test_compiled_signature_annotation_string.patch + All tests pass without it + +------------------------------------------------------------------- +Sun Feb 12 23:52:07 UTC 2023 - Matej Cepl <mc...@suse.com> + +- Add supported_pythons_310_311.patch which includes '3.11' among + _SUPPORTED_PYTHONS (gh#davidhalter/jedi#1914). + +------------------------------------------------------------------- +Sat Feb 11 00:28:05 UTC 2023 - Matej Cepl <mc...@suse.com> + +- Add fix_test_compiled_signature_annotation_string.patch to make + test passing with Python 3.10+ (gh#davidhalter/jedi#1732). + +------------------------------------------------------------------- New: ---- supported_pythons_310_311.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-jedi.spec ++++++ --- /var/tmp/diff_new_pack.gEJqTU/_old 2023-02-14 16:42:36.973443462 +0100 +++ /var/tmp/diff_new_pack.gEJqTU/_new 2023-02-14 16:42:36.977443486 +0100 @@ -28,6 +28,10 @@ Source1: %{name}-rpmlintrc # PATCH-FIX-UPSTREAM gh#davidhalter/jedi#1903 Patch0: support-python-311-typing.patch +# PATCH-FIX-UPSTREAM supported_pythons_310_311.patch gh#davidhalter/jedi#1914 mc...@suse.com +# Add '3.11' among _SUPPORTED_PYTHONS +Patch2: supported_pythons_310_311.patch +# The author of jedi and parso takes pinning very seriously, adhere to it! BuildRequires: %{python_module parso >= 0.8.0 with %python-parso < 0.9} BuildRequires: %{python_module pip} BuildRequires: %{python_module pytest >= 5} @@ -36,7 +40,7 @@ BuildRequires: %{python_module wheel} BuildRequires: fdupes BuildRequires: python-rpm-macros -# The author of jedi and parso takes pinning very seriously, adhere to it! +# See pinning note above Requires: (python-parso >= 0.8.0 with python-parso < 0.9) BuildArch: noarch %python_subpackages @@ -84,7 +88,7 @@ %files %{python_files} %doc AUTHORS.txt CHANGELOG.rst README.rst %license LICENSE.txt -%{python_sitelib}/jedi-%{version}.dist-info -%{python_sitelib}/jedi/ +%{python_sitelib}/jedi-%{version}*-info +%{python_sitelib}/jedi %changelog ++++++ support-python-311-typing.patch ++++++ --- /var/tmp/diff_new_pack.gEJqTU/_old 2023-02-14 16:42:37.017443723 +0100 +++ /var/tmp/diff_new_pack.gEJqTU/_new 2023-02-14 16:42:37.021443747 +0100 @@ -9,11 +9,9 @@ Fixes #1858 --- - test/test_api/test_interpreter.py | 6 ++++-- + test/test_api/test_interpreter.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) -diff --git a/test/test_api/test_interpreter.py b/test/test_api/test_interpreter.py -index 848bca746..8e69cafc9 100644 --- a/test/test_api/test_interpreter.py +++ b/test/test_api/test_interpreter.py @@ -656,10 +656,12 @@ def bar(): ++++++ supported_pythons_310_311.patch ++++++ --- jedi/api/environment.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/jedi/api/environment.py +++ b/jedi/api/environment.py @@ -17,7 +17,7 @@ import parso _VersionInfo = namedtuple('VersionInfo', 'major minor micro') -_SUPPORTED_PYTHONS = ['3.10', '3.9', '3.8', '3.7', '3.6'] +_SUPPORTED_PYTHONS = ['3.11', '3.10', '3.9', '3.8', '3.7', '3.6'] _SAFE_PATHS = ['/usr/bin', '/usr/local/bin'] _CONDA_VAR = 'CONDA_PREFIX' _CURRENT_VERSION = '%s.%s' % (sys.version_info.major, sys.version_info.minor)