Accepting request 979254 from home:andythe_great:branches:devel:languages:python:jupyter

- Diable pytest for signalkernel.py and problemkernel.py because
  issue with newer ipykernel.
  https://github.com/jupyter/jupyter_client/issues/787
- Update to version 7.3.1.
  * Bugs fixed
    * Check that channels exist before asking if they are alive
      #785 (@ccordoba12)
    * Unicode error correction using Error Handler #779 (@hxawax)
  * Maintenance and upkeep improvements
    * Allow bot PRs to be automatically labeled #784 (@blink1073)
- Update for version 7.3.0
  * Bugs fixed
    * Fix shutdown and cleanup behavior #772 (@blink1073)
  * Maintenance and upkeep improvements
    * Improve mypy config #769 (@blink1073)
- Update for version 7.2.2
  * Maintenance and upkeep improvements
    * Include py.typed file #766 (@blink1073)
    * More Cleanup #764 (@blink1073)
- Update for version 7.2.1
  * Maintenance and upkeep improvements
    * Handle Warnings #760 (@blink1073)
- Update for version 7.2.0
  * Enhancements made
    * Update consoleapp.py #733 (@you-n-g)
  * Bugs fixed
    * Json packer: handle TypeError and fallback to old json_clean
      #752 (@martinRenou)
    * Prefer sending signals to kernel process group #743
      (@kevin-bates)
  * Maintenance and upkeep improvements
    * Mock is not needed #758 (@hroncok)
    * Add pytest opts and clean up workflows #757 (@blink1073)
    * Clean up dependency handling #750 (@blink1073)
    * Use built in run cancellation #742 (@blink1073)

OBS-URL: https://build.opensuse.org/request/show/979254
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:jupyter/python-jupyter-client?expand=0&rev=17
This commit is contained in:
Benjamin Greiner 2022-05-25 23:12:26 +00:00 committed by Git OBS Bridge
parent 1c5e2994b6
commit 3de76d559f
4 changed files with 50 additions and 10 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4ea61033726c8e579edb55626d8ee2e6bf0a83158ddf3751b8dd46b2c5cd1e96
size 326163

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:05d4ff6a0ade25138c6bb0fbeac7ddc26b5fe835e7dd816b64b4a45b931bdc0b
size 328697

View File

@ -1,3 +1,42 @@
-------------------------------------------------------------------
Wed May 25 15:01:01 UTC 2022 - andy great <andythe_great@pm.me>
- Diable pytest for signalkernel.py and problemkernel.py because
issue with newer ipykernel.
https://github.com/jupyter/jupyter_client/issues/787
- Update to version 7.3.1.
* Bugs fixed
* Check that channels exist before asking if they are alive
#785 (@ccordoba12)
* Unicode error correction using Error Handler #779 (@hxawax)
* Maintenance and upkeep improvements
* Allow bot PRs to be automatically labeled #784 (@blink1073)
- Update for version 7.3.0
* Bugs fixed
* Fix shutdown and cleanup behavior #772 (@blink1073)
* Maintenance and upkeep improvements
* Improve mypy config #769 (@blink1073)
- Update for version 7.2.2
* Maintenance and upkeep improvements
* Include py.typed file #766 (@blink1073)
* More Cleanup #764 (@blink1073)
- Update for version 7.2.1
* Maintenance and upkeep improvements
* Handle Warnings #760 (@blink1073)
- Update for version 7.2.0
* Enhancements made
* Update consoleapp.py #733 (@you-n-g)
* Bugs fixed
* Json packer: handle TypeError and fallback to old json_clean
#752 (@martinRenou)
* Prefer sending signals to kernel process group #743
(@kevin-bates)
* Maintenance and upkeep improvements
* Mock is not needed #758 (@hroncok)
* Add pytest opts and clean up workflows #757 (@blink1073)
* Clean up dependency handling #750 (@blink1073)
* Use built in run cancellation #742 (@blink1073)
-------------------------------------------------------------------
Sun Mar 13 06:53:58 UTC 2022 - Ben Greiner <code@bnavigator.de>

View File

@ -27,7 +27,7 @@
%{?!python_module:%define python_module() python3-%{**}}
%define skip_python2 1
Name: python-jupyter-client%{psuffix}
Version: 7.1.2
Version: 7.3.1
Release: 0
Summary: Jupyter protocol implementation and client libraries
License: BSD-3-Clause
@ -39,11 +39,11 @@ BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: jupyter-jupyter_client = %{version}
Requires: python-entrypoints
Requires: python-jupyter-core >= 4.6.0
Requires: python-nest-asyncio >= 1.5
Requires: python-python-dateutil >= 2.1
Requires: python-pyzmq >= 13
Requires: python-tornado >= 4.1
Requires: python-jupyter-core >= 4.9.2
Requires: python-nest-asyncio >= 1.5.4
Requires: python-python-dateutil >= 2.8.2
Requires: python-pyzmq >= 22.3
Requires: python-tornado >= 6.0
Requires: python-traitlets
Provides: python-jupyter_client = %{version}
Obsoletes: python-jupyter_client < %{version}
@ -102,7 +102,8 @@ This package provides the jupyter components.
%if %{with test}
%check
pushd jupyter_client/tests
%pytest --force-flaky --max-runs=3 --no-success-flaky-report
# disable signalkernel.py and problemkernel.py due to newer ipykernel https://github.com/jupyter/jupyter_client/issues/787
%pytest --force-flaky --max-runs=3 --no-success-flaky-report --ignore signalkernel.py --ignore problemkernel.py
popd
%endif