Accepting request 747919 from devel:languages:python:jupyter
OBS-URL: https://build.opensuse.org/request/show/747919 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-ipython?expand=0&rev=4
This commit is contained in:
commit
45dcf008f7
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:1d3a1692921e932751bc1a1f7bb96dc38671eeefdc66ed33ee4cbc57e92a410e
|
|
||||||
size 5157086
|
|
3
ipython-7.9.0.tar.gz
Normal file
3
ipython-7.9.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:dfd303b270b7b5232b3d08bd30ec6fd685d8a58cabd54055e3d69d8f029f7280
|
||||||
|
size 5124623
|
@ -1,3 +1,3 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
version https://git-lfs.github.com/spec/v1
|
||||||
oid sha256:757262d87b8ce962f73543c2a4990f6a37b50765f509f95699e8e959b84cb4c2
|
oid sha256:f85959a47032cd144bc382f56c630369292ff2a9501de0e7c134fc038581ab4e
|
||||||
size 4307409
|
size 4312889
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
version https://git-lfs.github.com/spec/v1
|
||||||
oid sha256:641f848e25b3ddf6c85d7fecc41c0a5f01e534742174e8380e6fb3189346d59e
|
oid sha256:c414bfd49e75c851d0e571f5860d80baefd9bad0b608f96fc46345ba388c7fe3
|
||||||
size 13185524
|
size 13202888
|
||||||
|
@ -1,3 +1,23 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Nov 12 16:26:46 UTC 2019 - Todd R <toddrme2178@gmail.com>
|
||||||
|
|
||||||
|
- update to version 7.9.0:
|
||||||
|
* Update trio and curio dependencies eagerly.
|
||||||
|
* restore terminal title on exit (xterm)
|
||||||
|
* Easier empty, updatable display
|
||||||
|
* %env: hide likely secrets by default
|
||||||
|
* Prevent caching outputs in _, __, ___ when cache_size isn't positive
|
||||||
|
* switching update_instance() to gc.get_referrers()
|
||||||
|
* Fix for Python 4
|
||||||
|
* Autoreload slow
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Sep 14 16:27:03 UTC 2019 - Arun Persaud <arun@gmx.de>
|
||||||
|
|
||||||
|
- update to version 7.8.0:
|
||||||
|
* Enable changing the font color for LaTeX rendering
|
||||||
|
* and Re-Expose some PDB API
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sat Jul 27 03:20:00 UTC 2019 - Todd R <toddrme2178@gmail.com>
|
Sat Jul 27 03:20:00 UTC 2019 - Todd R <toddrme2178@gmail.com>
|
||||||
|
|
||||||
|
@ -19,9 +19,9 @@
|
|||||||
# This package has to be kept separate from the main package to avoid
|
# This package has to be kept separate from the main package to avoid
|
||||||
# dependency loops with most of the core jupyter packages.
|
# dependency loops with most of the core jupyter packages.
|
||||||
%define oldpython python
|
%define oldpython python
|
||||||
%define doc_ver 7.7.0
|
%define doc_ver 7.9.0
|
||||||
Name: python-ipython-doc
|
Name: python-ipython-doc
|
||||||
Version: 7.7.0
|
Version: 7.9.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Documentation for python3-jupyter_ipython
|
Summary: Documentation for python3-jupyter_ipython
|
||||||
License: BSD-3-Clause
|
License: BSD-3-Clause
|
||||||
@ -34,9 +34,9 @@ Source2: https://buildmedia.readthedocs.org/media/htmlzip/ipython/%{doc_v
|
|||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: python-rpm-macros
|
BuildRequires: python-rpm-macros
|
||||||
BuildRequires: unzip
|
BuildRequires: unzip
|
||||||
Provides: python-ipython-doc = %{version}
|
|
||||||
Provides: %{python_module ipython-doc = %{version}}
|
|
||||||
Provides: %{oldpython}-jupyter_ipython-doc = %{version}
|
Provides: %{oldpython}-jupyter_ipython-doc = %{version}
|
||||||
|
Provides: %{python_module ipython-doc = %{version}}
|
||||||
|
Provides: python-ipython-doc = %{version}
|
||||||
Obsoletes: %{oldpython}-jupyter_ipython-doc < %{version}
|
Obsoletes: %{oldpython}-jupyter_ipython-doc < %{version}
|
||||||
Provides: %{oldpython}-jupyter_ipython-doc-html = %{version}
|
Provides: %{oldpython}-jupyter_ipython-doc-html = %{version}
|
||||||
Obsoletes: %{oldpython}-jupyter_ipython-doc-html < %{version}
|
Obsoletes: %{oldpython}-jupyter_ipython-doc-html < %{version}
|
||||||
|
@ -1,3 +1,23 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Nov 12 16:26:46 UTC 2019 - Todd R <toddrme2178@gmail.com>
|
||||||
|
|
||||||
|
- update to version 7.9.0:
|
||||||
|
* Update trio and curio dependencies eagerly.
|
||||||
|
* restore terminal title on exit (xterm)
|
||||||
|
* Easier empty, updatable display
|
||||||
|
* %env: hide likely secrets by default
|
||||||
|
* Prevent caching outputs in _, __, ___ when cache_size isn't positive
|
||||||
|
* switching update_instance() to gc.get_referrers()
|
||||||
|
* Fix for Python 4
|
||||||
|
* Autoreload slow
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Sep 14 16:27:03 UTC 2019 - Arun Persaud <arun@gmx.de>
|
||||||
|
|
||||||
|
- update to version 7.8.0:
|
||||||
|
* Enable changing the font color for LaTeX rendering
|
||||||
|
* and Re-Expose some PDB API
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sat Jul 27 03:20:00 UTC 2019 - Todd R <toddrme2178@gmail.com>
|
Sat Jul 27 03:20:00 UTC 2019 - Todd R <toddrme2178@gmail.com>
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
%define skip_python2 1
|
%define skip_python2 1
|
||||||
%bcond_without iptest
|
%bcond_without iptest
|
||||||
Name: python-ipython
|
Name: python-ipython
|
||||||
Version: 7.7.0
|
Version: 7.9.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Rich architecture for interactive computing with Python
|
Summary: Rich architecture for interactive computing with Python
|
||||||
License: BSD-3-Clause
|
License: BSD-3-Clause
|
||||||
|
Loading…
Reference in New Issue
Block a user