forked from pool/python-jupyter-client
Benjamin Greiner
3de76d559f
- 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
125 lines
4.1 KiB
RPMSpec
125 lines
4.1 KiB
RPMSpec
#
|
|
# spec file
|
|
#
|
|
# Copyright (c) 2022 SUSE LLC
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%global flavor @BUILD_FLAVOR@%{nil}
|
|
%if "%{flavor}" == "test"
|
|
%define psuffix -test
|
|
%bcond_without test
|
|
%else
|
|
%define psuffix %{nil}
|
|
%bcond_with test
|
|
%endif
|
|
%{?!python_module:%define python_module() python3-%{**}}
|
|
%define skip_python2 1
|
|
Name: python-jupyter-client%{psuffix}
|
|
Version: 7.3.1
|
|
Release: 0
|
|
Summary: Jupyter protocol implementation and client libraries
|
|
License: BSD-3-Clause
|
|
Group: Development/Languages/Python
|
|
URL: https://github.com/jupyter/jupyter_client
|
|
Source: https://files.pythonhosted.org/packages/source/j/jupyter_client/jupyter_client-%{version}.tar.gz
|
|
BuildRequires: %{python_module setuptools}
|
|
BuildRequires: fdupes
|
|
BuildRequires: python-rpm-macros
|
|
Requires: jupyter-jupyter_client = %{version}
|
|
Requires: python-entrypoints
|
|
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}
|
|
BuildArch: noarch
|
|
%if %{with test}
|
|
BuildRequires: %{python_module ipykernel}
|
|
BuildRequires: %{python_module ipython}
|
|
BuildRequires: %{python_module jupyter-client = %{version}}
|
|
BuildRequires: %{python_module pytest-asyncio}
|
|
BuildRequires: %{python_module pytest-timeout}
|
|
BuildRequires: %{python_module pytest}
|
|
# flaky is not an upstream dep, but for obs flakyness of parallel kernel test
|
|
BuildRequires: %{python_module flaky}
|
|
%endif
|
|
%python_subpackages
|
|
|
|
%description
|
|
This package contains the reference implementation of the Jupyter protocol.
|
|
It also provides client and kernel management APIs for working with kernels.
|
|
|
|
It also provides the jupyter kernelspec entrypoint for installing kernelspecs
|
|
for use with Jupyter frontends.
|
|
|
|
This package provides the python interface.
|
|
|
|
%package -n jupyter-jupyter-client
|
|
Summary: Jupyter protocol implementation and client libraries
|
|
Group: Development/Languages/Python
|
|
Requires: python3-jupyter-client = %{version}
|
|
Provides: jupyter-jupyter_client = %{version}
|
|
Obsoletes: jupyter-jupyter_client < %{version}
|
|
Provides: jupyter-jupyter-client-doc = %{version}
|
|
Obsoletes: jupyter-jupyter-client-doc < %{version}
|
|
|
|
%description -n jupyter-jupyter-client
|
|
This package contains the reference implementation of the Jupyter protocol.
|
|
It also provides client and kernel management APIs for working with kernels.
|
|
|
|
It also provides the jupyter kernelspec entrypoint for installing kernelspecs
|
|
for use with Jupyter frontends.
|
|
|
|
This package provides the jupyter components.
|
|
|
|
%prep
|
|
%autosetup -p1 -n jupyter_client-%{version}
|
|
|
|
%build
|
|
%python_build
|
|
|
|
%install
|
|
%if !%{with test}
|
|
%python_install
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
|
%endif
|
|
|
|
%if %{with test}
|
|
%check
|
|
pushd jupyter_client/tests
|
|
# 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
|
|
|
|
%if !%{with test}
|
|
%files %{python_files}
|
|
%license COPYING.md
|
|
%{python_sitelib}/jupyter_client-%{version}*-info
|
|
%{python_sitelib}/jupyter_client/
|
|
|
|
%files -n jupyter-jupyter-client
|
|
%license COPYING.md
|
|
%doc CONTRIBUTING.md README.md
|
|
%{_bindir}/jupyter-kernel
|
|
%{_bindir}/jupyter-kernelspec
|
|
%{_bindir}/jupyter-run
|
|
%endif
|
|
|
|
%changelog
|