Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package python-spyder-kernels for
openSUSE:Factory checked in at 2024-03-06 23:04:11
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-spyder-kernels (Old)
and /work/SRC/openSUSE:Factory/.python-spyder-kernels.new.1770 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-spyder-kernels"
Wed Mar 6 23:04:11 2024 rev:45 rq:1155335 version:2.5.1
Changes:
--------
---
/work/SRC/openSUSE:Factory/python-spyder-kernels/python-spyder-kernels.changes
2023-11-27 22:43:38.970442409 +0100
+++
/work/SRC/openSUSE:Factory/.python-spyder-kernels.new.1770/python-spyder-kernels.changes
2024-03-06 23:04:28.697197072 +0100
@@ -1,0 +2,12 @@
+Tue Mar 5 18:55:24 UTC 2024 - Ben Greiner <[email protected]>
+
+- Skip python39 altogether: no ipykernel anymore
+
+-------------------------------------------------------------------
+Sat Mar 2 10:13:51 UTC 2024 - Ben Greiner <[email protected]>
+
+- Update to 2.5.1
+ * Fix hangs with Maplotlib interactive backends
+- Skip testing with xarray on python39
+
+-------------------------------------------------------------------
Old:
----
spyder-kernels-2.5.0-gh.tar.gz
New:
----
spyder-kernels-2.5.1-gh.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-spyder-kernels.spec ++++++
--- /var/tmp/diff_new_pack.klDrsO/_old 2024-03-06 23:04:29.381221871 +0100
+++ /var/tmp/diff_new_pack.klDrsO/_new 2024-03-06 23:04:29.381221871 +0100
@@ -1,7 +1,7 @@
#
# spec file for package python-spyder-kernels
#
-# Copyright (c) 2023 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -18,8 +18,10 @@
# flaky for obs, only test locally
%bcond_with dasktest
+# no ipykernel anymore
+%define skip_python39 1
Name: python-spyder-kernels
-Version: 2.5.0
+Version: 2.5.1
Release: 0
Summary: Jupyter kernels for Spyder's console
License: MIT
@@ -42,7 +44,7 @@
BuildRequires: %{python_module cloudpickle}
BuildRequires: %{python_module flaky}
BuildRequires: %{python_module h5py}
-BuildRequires: %{python_module ipykernel >= 6.23.2 with %python-ipykernel < 7}
+BuildRequires: %{python_module ipykernel >= 6.29.3 with %python-ipykernel < 7}
BuildRequires: %{python_module ipython >= 8.13 with %python-ipython < 9}
BuildRequires: %{python_module jupyter_client >= 7.4.9 with
%python-jupyter_client < 9}
BuildRequires: %{python_module matplotlib}
@@ -50,7 +52,7 @@
BuildRequires: %{python_module pandas}
BuildRequires: %{python_module pydicom}
BuildRequires: %{python_module pytest}
-BuildRequires: %{python_module pyzmq >= 22.1}
+BuildRequires: %{python_module pyzmq >= 24}
BuildRequires: %{python_module scipy}
BuildRequires: %{python_module wurlitzer >= 1.0.3}
BuildRequires: %{python_module xarray}
@@ -59,9 +61,9 @@
%endif
# /SECTION
Requires: python-cloudpickle
-Requires: python-pyzmq >= 22.1
+Requires: python-pyzmq >= 24
Requires: python-wurlitzer >= 1.0.3
-Requires: (python-ipykernel >= 6.23.2 with python-ipykernel < 7)
+Requires: (python-ipykernel >= 6.29.3 with python-ipykernel < 7)
Requires: (python-ipython >= 8.13 with python-ipython < 9)
Requires: (python-jupyter_client >= 7.4.9 with python-jupyter_client < 9)
BuildArch: noarch
++++++ spyder-kernels-2.5.0-gh.tar.gz -> spyder-kernels-2.5.1-gh.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/spyder-kernels-2.5.0/.github/workflows/linux-pip-tests.yml
new/spyder-kernels-2.5.1/.github/workflows/linux-pip-tests.yml
--- old/spyder-kernels-2.5.0/.github/workflows/linux-pip-tests.yml
2023-11-06 18:20:32.000000000 +0100
+++ new/spyder-kernels-2.5.1/.github/workflows/linux-pip-tests.yml
2024-02-28 03:03:06.000000000 +0100
@@ -46,8 +46,10 @@
shell: bash -l {0}
run: |
pip install -e .[test]
- # Zict 2.1.0 is not compatible with Python 3
- pip install zict==2.0.0
+ # Zict >2.0.0 is not compatible with Python 3
+ if [ "$PYTHON_VERSION" = "2.7" ]; then
+ pip install zict==2.0.0
+ fi
- name: Show environment information
shell: bash -l {0}
run: |
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/spyder-kernels-2.5.0/.github/workflows/linux-tests.yml
new/spyder-kernels-2.5.1/.github/workflows/linux-tests.yml
--- old/spyder-kernels-2.5.0/.github/workflows/linux-tests.yml 2023-11-06
18:20:32.000000000 +0100
+++ new/spyder-kernels-2.5.1/.github/workflows/linux-tests.yml 2024-02-28
03:03:06.000000000 +0100
@@ -47,7 +47,7 @@
- name: Install package dependencies
shell: bash -l {0}
run: |
- if [ "$PYTHON_VERSION" != "2.7" ]; then mamba install --file
requirements/posix.txt -y -q; else mamba install --file
requirements/python-27.txt -y -q; fi
+ mamba install --file requirements/posix.txt -y -q
- name: Install test dependencies
shell: bash -l {0}
run: mamba install --file requirements/tests.txt -y -q
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/spyder-kernels-2.5.0/.github/workflows/macos-tests.yml
new/spyder-kernels-2.5.1/.github/workflows/macos-tests.yml
--- old/spyder-kernels-2.5.0/.github/workflows/macos-tests.yml 2023-11-06
18:20:32.000000000 +0100
+++ new/spyder-kernels-2.5.1/.github/workflows/macos-tests.yml 2024-02-28
03:03:06.000000000 +0100
@@ -43,7 +43,7 @@
- name: Install package dependencies
shell: bash -l {0}
run: |
- if [ "$PYTHON_VERSION" != "2.7" ]; then mamba install --file
requirements/posix.txt -y -q; else mamba install --file
requirements/python-27.txt -y -q; fi
+ mamba install --file requirements/posix.txt -y -q
- name: Install test dependencies
shell: bash -l {0}
run: mamba install --file requirements/tests.txt -y -q
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/spyder-kernels-2.5.0/CHANGELOG.md
new/spyder-kernels-2.5.1/CHANGELOG.md
--- old/spyder-kernels-2.5.0/CHANGELOG.md 2023-11-06 18:20:32.000000000
+0100
+++ new/spyder-kernels-2.5.1/CHANGELOG.md 2024-02-28 03:03:06.000000000
+0100
@@ -1,5 +1,17 @@
# History of changes
+## Version 2.5.1 (2024-02-28)
+
+### Pull Requests Merged
+
+* [PR 479](https://github.com/spyder-ide/spyder-kernels/pull/479) - PR: Fix
hangs with Maplotlib interactive backends, by
[@ccordoba12](https://github.com/ccordoba12)
+
+In this release 1 pull request was closed.
+
+
+----
+
+
## Version 2.5.0 (2023-11-06)
### New features
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/spyder-kernels-2.5.0/requirements/posix.txt
new/spyder-kernels-2.5.1/requirements/posix.txt
--- old/spyder-kernels-2.5.0/requirements/posix.txt 2023-11-06
18:20:32.000000000 +0100
+++ new/spyder-kernels-2.5.1/requirements/posix.txt 2024-02-28
03:03:06.000000000 +0100
@@ -1,6 +1,6 @@
cloudpickle
-ipykernel>=6.23.2,<7
+ipykernel>=6.29.3,<7
ipython>=8.12.2,<9
jupyter_client>=7.4.9,<9
-pyzmq>=22.1.0
+pyzmq>=24.0.0
wurlitzer>=1.0.3
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/spyder-kernels-2.5.0/requirements/windows.txt
new/spyder-kernels-2.5.1/requirements/windows.txt
--- old/spyder-kernels-2.5.0/requirements/windows.txt 2023-11-06
18:20:32.000000000 +0100
+++ new/spyder-kernels-2.5.1/requirements/windows.txt 2024-02-28
03:03:06.000000000 +0100
@@ -1,5 +1,5 @@
cloudpickle
-ipykernel>=6.23.2,<7
+ipykernel>=6.29.3,<7
ipython>=8.12.2,<9
jupyter_client>=7.4.9,<9
-pyzmq>=22.1.0
+pyzmq>=24.0.0
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/spyder-kernels-2.5.0/setup.py
new/spyder-kernels-2.5.1/setup.py
--- old/spyder-kernels-2.5.0/setup.py 2023-11-06 18:20:32.000000000 +0100
+++ new/spyder-kernels-2.5.1/setup.py 2024-02-28 03:03:06.000000000 +0100
@@ -41,7 +41,7 @@
'cloudpickle',
'ipykernel>=4.5,<5; python_version<"3"',
'ipykernel>=6.16.1,<6.17; python_version<"3.8"',
- 'ipykernel>=6.23.2,<7; python_version>="3.8"',
+ 'ipykernel>=6.29.3,<7; python_version>="3.8"',
'ipython<6; python_version<"3"',
'ipython>=7.31.1,<8; python_version<"3.8"',
'ipython>=8.12.2,<8.13; python_version=="3.8"',
@@ -49,7 +49,7 @@
'jupyter-client>=5.3.4,<6; python_version<"3"',
'jupyter-client>=7.4.9,<9; python_version>="3"',
'pyzmq>=17,<20; python_version<"3"',
- 'pyzmq>=22.1.0; python_version>="3"',
+ 'pyzmq>=24.0.0; python_version>="3"',
'wurlitzer>=1.0.3;platform_system!="Windows"',
]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/spyder-kernels-2.5.0/spyder_kernels/_version.py
new/spyder-kernels-2.5.1/spyder_kernels/_version.py
--- old/spyder-kernels-2.5.0/spyder_kernels/_version.py 2023-11-06
18:20:32.000000000 +0100
+++ new/spyder-kernels-2.5.1/spyder_kernels/_version.py 2024-02-28
03:03:06.000000000 +0100
@@ -8,5 +8,5 @@
"""Version File."""
-VERSION_INFO = (2, 5, 0)
+VERSION_INFO = (2, 5, 1)
__version__ = '.'.join(map(str, VERSION_INFO))