forked from pool/python-ipykernel
Accepting request 946634 from devel:languages:python:jupyter
- Cleanup specfile - Update dependency declarations - Update to 6.7.0: - PR: do_one_iteration is a coroutine - Clean python 2 artifacts. Fix - Fix title position in changelog - Set debugOptions for breakpoints in python standard library source - Send omit_sections to IPython to choose which sections of documentation you do not want - Added missing exceptionPaths field to debugInfo reply - Test jupyter_kernel_test as downstream - Remove nose dependency - Add explicit encoding to open calls in debugger - Fix the temp file name created by the debugger - Enforce labels on PRs - Unpin IPython, and remove some dependencies on it. - Fix rich variables inspection - Do not call setQuitOnLastWindowClosed() on a QCoreApplication - Drop ipython_genutils requirement OBS-URL: https://build.opensuse.org/request/show/946634 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-ipykernel?expand=0&rev=19
This commit is contained in:
commit
6da9456b24
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0140f78bfd60e47e387b6433b4bed0f228986420dc4d5fac0e251c9711e23e29
|
||||
size 121253
|
3
ipykernel-6.7.0.tar.gz
Normal file
3
ipykernel-6.7.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d82b904fdc2fd8c7b1fbe0fa481c68a11b4cd4c8ef07e6517da1f10cc3114d24
|
||||
size 125582
|
@ -1,3 +1,31 @@
|
||||
-------------------------------------------------------------------
|
||||
Sat Jan 15 14:59:15 UTC 2022 - Ben Greiner <code@bnavigator.de>
|
||||
|
||||
- Cleanup specfile
|
||||
- Update dependency declarations
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 14 17:29:31 UTC 2022 - Matej Cepl <mcepl@suse.com>
|
||||
|
||||
- Update to 6.7.0:
|
||||
- PR: do_one_iteration is a coroutine
|
||||
- Clean python 2 artifacts. Fix
|
||||
- Fix title position in changelog
|
||||
- Set debugOptions for breakpoints in python standard library
|
||||
source
|
||||
- Send omit_sections to IPython to choose which sections of
|
||||
documentation you do not want
|
||||
- Added missing exceptionPaths field to debugInfo reply
|
||||
- Test jupyter_kernel_test as downstream
|
||||
- Remove nose dependency
|
||||
- Add explicit encoding to open calls in debugger
|
||||
- Fix the temp file name created by the debugger
|
||||
- Enforce labels on PRs
|
||||
- Unpin IPython, and remove some dependencies on it.
|
||||
- Fix rich variables inspection
|
||||
- Do not call setQuitOnLastWindowClosed() on a QCoreApplication
|
||||
- Drop ipython_genutils requirement
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Dec 19 19:59:00 UTC 2021 - Ben Greiner <code@bnavigator.de>
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package python-ipykernel
|
||||
#
|
||||
# Copyright (c) 2021 SUSE LLC
|
||||
# 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
|
||||
@ -16,12 +16,10 @@
|
||||
#
|
||||
|
||||
|
||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||
%{?!python_module:%define python_module() python3-%{**}}
|
||||
%define skip_python2 1
|
||||
%define skip_python36 1
|
||||
Name: python-ipykernel
|
||||
# Note: Don't update to > 6.4 until you can update traitlets 4, which is required for python36
|
||||
Version: 6.4.2
|
||||
Version: 6.7.0
|
||||
Release: 0
|
||||
Summary: IPython Kernel for Jupyter
|
||||
License: BSD-3-Clause
|
||||
@ -36,12 +34,11 @@ BuildRequires: python-rpm-macros
|
||||
Requires: jupyter-jupyter-client
|
||||
Requires: python-debugpy >= 1.0
|
||||
Requires: python-ipython >= 7.23.1
|
||||
Requires: python-ipython_genutils
|
||||
Requires: python-jupyter-client
|
||||
Requires: python-jupyter-core
|
||||
Requires: python-matplotlib-inline >= 0.1
|
||||
Requires: python-tornado >= 4.2
|
||||
Requires: python-traitlets >= 4.1.0
|
||||
Requires: python-traitlets >= 5.1.0
|
||||
Provides: python-jupyter_ipykernel = %{version}
|
||||
Obsoletes: python-jupyter_ipykernel < %{version}
|
||||
Provides: %{python_module ipykernel-doc = %{version}}
|
||||
@ -59,15 +56,12 @@ Obsoletes: jupyter-ipykernel < %{version}-%{release}
|
||||
BuildRequires: %{python_module debugpy >= 1.0.0}
|
||||
BuildRequires: %{python_module flaky}
|
||||
BuildRequires: %{python_module ipython >= 7.23.1}
|
||||
BuildRequires: %{python_module ipython_genutils}
|
||||
BuildRequires: %{python_module jupyter-client}
|
||||
BuildRequires: %{python_module jupyter-core}
|
||||
BuildRequires: %{python_module matplotlib-inline >= 0.1}
|
||||
# still using nose streams from ipython, but they are working on a removal
|
||||
BuildRequires: %{python_module nose}
|
||||
BuildRequires: %{python_module pytest}
|
||||
BuildRequires: %{python_module tornado >= 4.2}
|
||||
BuildRequires: %{python_module traitlets >= 4.1.0}
|
||||
BuildRequires: %{python_module traitlets >= 5.1.0}
|
||||
# /SECTION
|
||||
# typing is only built-in for later versions of python
|
||||
%if 0%{?suse_version} <= 1320
|
||||
@ -105,7 +99,7 @@ $python -m ipykernel install \
|
||||
%fdupes %{buildroot}%{_jupyter_kernel_dir}
|
||||
|
||||
%check
|
||||
%pytest -ra
|
||||
%pytest ipykernel
|
||||
|
||||
%files %{python_files}
|
||||
%doc README.md
|
||||
|
Loading…
x
Reference in New Issue
Block a user