forked from pool/python-ipython
Accepting request 697970 from home:TheBlackCat:branches:devel:languages:python:jupyter
- Update to 7.5.0 * IPython 7.5.0 consist mostly of bug-fixes, and documentation updates, with one minor new feature. The Audio display element can now be assigned an element id when displayed in browser. * The major outstanding bug fix correct a change of behavior that was introduce in 7.4.0 where some cell magics would not be able to access or modify global scope when using the @needs_local_scope decorator. This was typically encountered with the %%time and %%timeit magics. - Update to 7.5.0 * IPython 7.5.0 consist mostly of bug-fixes, and documentation updates, with one minor new feature. The Audio display element can now be assigned an element id when displayed in browser. * The major outstanding bug fix correct a change of behavior that was introduce in 7.4.0 where some cell magics would not be able to access or modify global scope when using the @needs_local_scope decorator. This was typically encountered with the %%time and %%timeit magics. OBS-URL: https://build.opensuse.org/request/show/697970 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:jupyter/python-ipython?expand=0&rev=5
This commit is contained in:
parent
f6f53f2ae9
commit
f4845bc81c
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b038baa489c38f6d853a3cfc4c635b0cda66f2864d136fe8f40c1a6e334e2a6b
|
||||
size 5118138
|
3
ipython-7.5.0.tar.gz
Normal file
3
ipython-7.5.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e840810029224b56cd0d9e7719dc3b39cf84d577f8ac686547c8ba7a06eeab26
|
||||
size 5118610
|
@ -1,3 +1,15 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Apr 25 20:45:20 UTC 2019 - Todd R <toddrme2178@gmail.com>
|
||||
|
||||
- Update to 7.5.0
|
||||
* IPython 7.5.0 consist mostly of bug-fixes, and documentation updates,
|
||||
with one minor new feature. The Audio display element can now be
|
||||
assigned an element id when displayed in browser.
|
||||
* The major outstanding bug fix correct a change of behavior that was
|
||||
introduce in 7.4.0 where some cell magics would not be able to access
|
||||
or modify global scope when using the @needs_local_scope decorator.
|
||||
This was typically encountered with the %%time and %%timeit magics.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Apr 25 01:59:57 UTC 2019 - Todd R <toddrme2178@gmail.com>
|
||||
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:26d7c7c16a49754f2b9359fbbbc6d111fc808d3299fd98f745ef119208114761
|
||||
size 4319363
|
||||
oid sha256:c559075142a939833788b2f5894798abfc72e380c9658d14e224b707a7ee502c
|
||||
size 4303027
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c548498fb8b92e6f12328902f237160f06ab6676d0d18269b197dcc9710df559
|
||||
size 13215083
|
||||
oid sha256:d5a67cc5497809af2230e84af3c00570578fae6482ce88edd8b73ec57b432b04
|
||||
size 13173977
|
||||
|
@ -20,7 +20,8 @@
|
||||
# dependency loops with most of the core jupyter packages.
|
||||
%define oldpython python
|
||||
Name: python-ipython-doc
|
||||
Version: 7.4.0
|
||||
Version: 7.5.0
|
||||
%define doc_ver 7.5.0
|
||||
Release: 0
|
||||
Summary: Documentation for python3-jupyter_ipython
|
||||
License: BSD-3-Clause
|
||||
@ -28,8 +29,8 @@ Group: Documentation/Other
|
||||
URL: https://github.com/ipython/ipython
|
||||
Source0: https://files.pythonhosted.org/packages/source/i/ipython/ipython-%{version}.tar.gz
|
||||
# Please make sure you update the documentation files at every release
|
||||
Source1: https://media.readthedocs.org/pdf/ipython/stable/ipython.pdf
|
||||
Source2: https://media.readthedocs.org/htmlzip/ipython/stable/ipython.zip
|
||||
Source1: https://buildmedia.readthedocs.org/media/pdf/ipython/%{doc_ver}/ipython.pdf
|
||||
Source2: https://buildmedia.readthedocs.org/media/htmlzip/ipython/%{doc_ver}/ipython.zip
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: python-rpm-macros
|
||||
BuildRequires: unzip
|
||||
@ -46,11 +47,11 @@ Provides: %{oldpython}-jupyter_ipython-doc-pdf = %{version}
|
||||
Obsoletes: %{oldpython}-jupyter_ipython-doc-html < %{version}
|
||||
Obsoletes: %{oldpython}-jupyter_ipython-doc-pdf < %{version}
|
||||
Provides: %{python_module jupyter_ipython-doc = %{version}}
|
||||
Obsoletes: %{python_module jupyter_ipython-doc <= %{version}}
|
||||
Obsoletes: %{python_module jupyter_ipython-doc < %{version}}
|
||||
Provides: %{python_module jupyter_ipython-doc-html = %{version}}
|
||||
Obsoletes: %{python_module jupyter_ipython-doc-html <= %{version}}
|
||||
Obsoletes: %{python_module jupyter_ipython-doc-html < %{version}}
|
||||
Provides: %{python_module jupyter_ipython-doc-pdf = %{version}}
|
||||
Obsoletes: %{python_module jupyter_ipython-doc-pdf <= %{version}}
|
||||
Obsoletes: %{python_module jupyter_ipython-doc-pdf < %{version}}
|
||||
%ifpython3
|
||||
Provides: jupyter-ipython-doc = %{version}
|
||||
%endif
|
||||
|
@ -1,3 +1,15 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Apr 25 20:45:20 UTC 2019 - Todd R <toddrme2178@gmail.com>
|
||||
|
||||
- Update to 7.5.0
|
||||
* IPython 7.5.0 consist mostly of bug-fixes, and documentation updates,
|
||||
with one minor new feature. The Audio display element can now be
|
||||
assigned an element id when displayed in browser.
|
||||
* The major outstanding bug fix correct a change of behavior that was
|
||||
introduce in 7.4.0 where some cell magics would not be able to access
|
||||
or modify global scope when using the @needs_local_scope decorator.
|
||||
This was typically encountered with the %%time and %%timeit magics.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Apr 25 01:59:57 UTC 2019 - Todd R <toddrme2178@gmail.com>
|
||||
|
||||
|
@ -20,7 +20,7 @@
|
||||
%define skip_python2 1
|
||||
%bcond_without iptest
|
||||
Name: python-ipython
|
||||
Version: 7.4.0
|
||||
Version: 7.5.0
|
||||
Release: 0
|
||||
Summary: Rich architecture for interactive computing with Python
|
||||
License: BSD-3-Clause
|
||||
@ -63,7 +63,7 @@ BuildArch: noarch
|
||||
BuildRequires: icoutils
|
||||
%endif
|
||||
Provides: python-jupyter_ipython = %{version}
|
||||
Obsoletes: python-jupyter_ipython <= %{version}
|
||||
Obsoletes: python-jupyter_ipython < %{version}
|
||||
Provides: jupyter-ipython = %{version}
|
||||
%python_subpackages
|
||||
|
||||
@ -108,6 +108,8 @@ Requires: python-nose >= 0.10.1
|
||||
Requires: python-numpy
|
||||
Requires: python-requests
|
||||
Requires: python-testpath
|
||||
Provides: python-jupyter_ipython-iptest = %{version}
|
||||
Obsoletes: python-jupyter_ipython-iptest < %{version}
|
||||
|
||||
%description iptest
|
||||
This package provides the iptest command, which is used for
|
||||
|
Loading…
Reference in New Issue
Block a user