Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package spyder for openSUSE:Factory checked in at 2021-06-15 16:37:45 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/spyder (Old) and /work/SRC/openSUSE:Factory/.spyder.new.32437 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "spyder" Tue Jun 15 16:37:45 2021 rev:24 rq:900005 version:5.0.4 Changes: -------- --- /work/SRC/openSUSE:Factory/spyder/spyder.changes 2021-05-21 21:50:44.614052674 +0200 +++ /work/SRC/openSUSE:Factory/.spyder.new.32437/spyder.changes 2021-06-15 16:38:15.973790045 +0200 @@ -1,0 +2,14 @@ +Mon Jun 14 22:16:56 UTC 2021 - Ben Greiner <c...@bnavigator.de> + +- Add tame-kite-installer-check.patch + +------------------------------------------------------------------- +Mon Jun 14 14:36:41 UTC 2021 - Ben Greiner <c...@bnavigator.de> + +- Update to version 5.0.4 + * Programmatic addition of new layouts + * Fix debugger for IPython 7.24.0 + * Fix loading complex third-party plugins + * Fix errors when restarting kernels + +------------------------------------------------------------------- Old: ---- spyder-5.0.3.tar.gz New: ---- spyder-5.0.4.tar.gz tame-kite-installer-check.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ spyder.spec ++++++ --- /var/tmp/diff_new_pack.2TBOcY/_old 2021-06-15 16:38:17.289792325 +0200 +++ /var/tmp/diff_new_pack.2TBOcY/_new 2021-06-15 16:38:17.289792325 +0200 @@ -18,7 +18,7 @@ %bcond_without test Name: spyder -Version: 5.0.3 +Version: 5.0.4 Release: 0 Summary: The Scientific Python Development Environment License: MIT @@ -26,6 +26,8 @@ URL: https://www.spyder-ide.org/ Source: https://github.com/spyder-ide/spyder/archive/v%{version}.tar.gz#/spyder-%{version}.tar.gz Source1: spyder-rpmlintrc +# PATCH-FIX-OPENSUSE tame-kite-installer-check -- Don't error out on not being able to connect to the kite release server c...@bnavigator.de +Patch1: tame-kite-installer-check.patch BuildRequires: fdupes BuildRequires: python-rpm-macros BuildRequires: python3-setuptools >= 39.0.0 @@ -71,7 +73,7 @@ Requires: python3-qtwebengine-qt5 Requires: python3-rope >= 0.10.5 Requires: python3-setuptools >= 39.0.0 -Requires: python3-spyder-kernels >= 2.0.3 +Requires: python3-spyder-kernels >= 2.0.4 Requires: python3-textdistance >= 4.2.0 Requires: python3-three-merge >= 0.1.1 Requires: python3-watchdog @@ -263,7 +265,7 @@ # note: before you add any unpin here, check that it works with the new version. # gh#spyder-ide/spyder#11975 # parso was pinned because of JEDI (PR#11476 and PR#11809) -# watchdog: boo#1186327 +# watchdog: boo#1186327, https://github.com/spyder-ide/spyder/issues/14803 sed -e "/JEDI_REQVER =/ s/'=/'>=/" \ -e "/PARSO_REQVER =/ s/'=/'>=/" \ -e "/WATCHDOG_REQVER =/ s/;<[^']*//" \ ++++++ spyder-5.0.3.tar.gz -> spyder-5.0.4.tar.gz ++++++ /work/SRC/openSUSE:Factory/spyder/spyder-5.0.3.tar.gz /work/SRC/openSUSE:Factory/.spyder.new.32437/spyder-5.0.4.tar.gz differ: char 13, line 1 ++++++ tame-kite-installer-check.patch ++++++ Index: spyder-5.0.4/spyder/plugins/completion/providers/kite/utils/status.py =================================================================== --- spyder-5.0.4.orig/spyder/plugins/completion/providers/kite/utils/status.py +++ spyder-5.0.4/spyder/plugins/completion/providers/kite/utils/status.py @@ -114,7 +114,10 @@ def check_kite_installers_availability() elif sys.platform == 'darwin': url = MAC_URL - req = requests.head(url) + try: + req = requests.head(url) + except requests.exceptions.ConnectionError: + return False available = req.ok if req.ok: if req.is_redirect: