commit python-jupyter_ipywidgets for openSUSE:Factory

2019-02-11 Thread root
Hello community,

here is the log from the commit of package python-jupyter_ipywidgets for 
openSUSE:Factory checked in at 2019-02-11 21:24:03

Comparing /work/SRC/openSUSE:Factory/python-jupyter_ipywidgets (Old)
 and  /work/SRC/openSUSE:Factory/.python-jupyter_ipywidgets.new.28833 (New)


Package is "python-jupyter_ipywidgets"

Mon Feb 11 21:24:03 2019 rev:18 rq:672849 version:7.4.2

Changes:

--- 
/work/SRC/openSUSE:Factory/python-jupyter_ipywidgets/python-jupyter_ipywidgets.changes
  2019-02-06 14:07:53.550644045 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-jupyter_ipywidgets.new.28833/python-jupyter_ipywidgets.changes
   2019-02-11 21:24:03.895123188 +0100
@@ -1,0 +2,5 @@
+Thu Feb  7 06:37:08 UTC 2019 - Hans-Peter Jansen 
+
+- add python pexpect and pickleshare test dependencies 
+
+---



Other differences:
--
++ python-jupyter_ipywidgets.spec ++
--- /var/tmp/diff_new_pack.40dinP/_old  2019-02-11 21:24:04.727122741 +0100
+++ /var/tmp/diff_new_pack.40dinP/_new  2019-02-11 21:24:04.731122739 +0100
@@ -45,6 +45,8 @@
 BuildRequires:  %{python_module jupyter_nbformat >= 4.2.0}
 BuildRequires:  %{python_module jupyter_widgetsnbextension >= 3.0.0}
 BuildRequires:  %{python_module nose}
+BuildRequires:  %{python_module pexpect}
+BuildRequires:  %{python_module pickleshare}
 BuildRequires:  %{python_module pytest}
 BuildRequires:  %{python_module recommonmark}
 BuildRequires:  %{python_module traitlets >= 4.3.1}





commit python-jupyter_ipywidgets for openSUSE:Factory

2019-02-06 Thread root
Hello community,

here is the log from the commit of package python-jupyter_ipywidgets for 
openSUSE:Factory checked in at 2019-02-06 14:07:52

Comparing /work/SRC/openSUSE:Factory/python-jupyter_ipywidgets (Old)
 and  /work/SRC/openSUSE:Factory/.python-jupyter_ipywidgets.new.28833 (New)


Package is "python-jupyter_ipywidgets"

Wed Feb  6 14:07:52 2019 rev:17 rq:671957 version:7.4.2

Changes:

--- 
/work/SRC/openSUSE:Factory/python-jupyter_ipywidgets/python-jupyter_ipywidgets.changes
  2018-09-19 14:33:30.211297867 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-jupyter_ipywidgets.new.28833/python-jupyter_ipywidgets.changes
   2019-02-06 14:07:53.550644045 +0100
@@ -1,0 +2,5 @@
+Tue Feb  5 12:52:46 UTC 2019 - Antonio Larrosa 
+
+- Add fix-py3.7-unicode-in-rawstring.patch to fix building with python3.7
+
+---

New:

  fix-py3.7-unicode-in-rawstring.patch



Other differences:
--
++ python-jupyter_ipywidgets.spec ++
--- /var/tmp/diff_new_pack.RBqmzF/_old  2019-02-06 14:07:54.294643908 +0100
+++ /var/tmp/diff_new_pack.RBqmzF/_new  2019-02-06 14:07:54.298643907 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-jupyter_ipywidgets
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -28,6 +28,7 @@
 # Please make sure you update the documentation files at every release
 Source1:
https://media.readthedocs.org/pdf/ipywidgets/stable/ipywidgets.pdf
 Source2:
https://media.readthedocs.org/htmlzip/ipywidgets/stable/ipywidgets.zip
+Patch0: fix-py3.7-unicode-in-rawstring.patch
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
@@ -64,6 +65,7 @@
 
 %prep
 %setup -q -n ipywidgets-%{version}
+%patch0 -p1
 cp %{SOURCE1} .
 unzip %{SOURCE2} -d docs
 mv docs/ipywidgets-* docs/html

++ fix-py3.7-unicode-in-rawstring.patch ++
Index: ipywidgets-7.4.2/ipywidgets/embed.py
===
--- ipywidgets-7.4.2.orig/ipywidgets/embed.py
+++ ipywidgets-7.4.2/ipywidgets/embed.py
@@ -238,7 +238,7 @@ def escape_script(s):
 We only replace these three cases so that most html or other content
 involving `<` is readable.
 """
-return script_escape_re.sub(r'\u003c\1', s)
+return script_escape_re.sub('u003c\\1', s)
 
 @doc_subst(_doc_snippets)
 def embed_snippet(views,




commit python-jupyter_ipywidgets for openSUSE:Factory

2018-09-19 Thread root
Hello community,

here is the log from the commit of package python-jupyter_ipywidgets for 
openSUSE:Factory checked in at 2018-09-19 14:32:03

Comparing /work/SRC/openSUSE:Factory/python-jupyter_ipywidgets (Old)
 and  /work/SRC/openSUSE:Factory/.python-jupyter_ipywidgets.new (New)


Package is "python-jupyter_ipywidgets"

Wed Sep 19 14:32:03 2018 rev:16 rq:636491 version:7.4.2

Changes:

--- 
/work/SRC/openSUSE:Factory/python-jupyter_ipywidgets/python-jupyter_ipywidgets.changes
  2018-09-15 15:35:37.169009860 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-jupyter_ipywidgets.new/python-jupyter_ipywidgets.changes
 2018-09-19 14:33:30.211297867 +0200
@@ -1,0 +2,15 @@
+Sun Sep 16 16:20:05 UTC 2018 - Arun Persaud 
+
+- specfile:
+  * remove devel from noarch
+  * be more specific in %files section
+
+- update to version 7.4.2:
+  * Add `click` method to the Button Widget
+  * Fix JS remove_buffers view check
+  * Add tests for JS remove_buffers
+  * Use data-jupyter-widgets-cdn attribute to make the CDN
+configurable
+  * update lerna
+
+---

Old:

  ipywidgets-7.4.1.tar.gz

New:

  ipywidgets-7.4.2.tar.gz



Other differences:
--
++ python-jupyter_ipywidgets.spec ++
--- /var/tmp/diff_new_pack.SeabBf/_old  2018-09-19 14:33:31.587296938 +0200
+++ /var/tmp/diff_new_pack.SeabBf/_new  2018-09-19 14:33:31.627296911 +0200
@@ -12,27 +12,32 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-jupyter_ipywidgets
-Version:7.4.1
+Version:7.4.2
 Release:0
 Summary:IPython HTML widgets for Jupyter
 License:BSD-3-Clause
 Group:  Development/Languages/Python
-Url:https://github.com/jupyter-widgets/ipywidgets
+URL:https://github.com/jupyter-widgets/ipywidgets
 Source0:
https://files.pythonhosted.org/packages/source/i/ipywidgets/ipywidgets-%{version}.tar.gz
 # Please make sure you update the documentation files at every release
 Source1:
https://media.readthedocs.org/pdf/ipywidgets/stable/ipywidgets.pdf
 Source2:
https://media.readthedocs.org/htmlzip/ipywidgets/stable/ipywidgets.zip
-BuildRequires:  %{python_module devel}
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
 BuildRequires:  unzip
+Requires:   python-jupyter_ipykernel >= 4.5.1
+Requires:   python-jupyter_ipython >= 4
+Requires:   python-jupyter_nbformat >= 4.2.0
+Requires:   python-jupyter_widgetsnbextension >= 3.0.0
+Requires:   python-traitlets >= 4.3.1
+BuildArch:  noarch
 # SECTION test requirements
 BuildRequires:  %{python_module jupyter_ipykernel >= 4.5.1}
 BuildRequires:  %{python_module jupyter_ipython >= 4}
@@ -44,12 +49,6 @@
 BuildRequires:  %{python_module traitlets >= 4.3.1}
 BuildRequires:  python-mock
 # /SECTION
-Requires:   python-jupyter_ipykernel >= 4.5.1
-Requires:   python-jupyter_ipython >= 4
-Requires:   python-jupyter_nbformat >= 4.2.0
-Requires:   python-jupyter_widgetsnbextension >= 3.0.0
-Requires:   python-traitlets >= 4.3.1
-BuildArch:  noarch
 %python_subpackages
 
 %description
@@ -85,10 +84,11 @@
 popd
 
 %files %{python_files}
-%defattr(-,root,root,-)
 %doc README.md
 %license LICENSE
-%{python_sitelib}/*
+%dir %{python_sitelib}/ipywidgets
+%{python_sitelib}/ipywidgets/*
+%{python_sitelib}/ipywidgets-%{version}-py*.egg-info
 
 %files -n python-jupyter_ipywidgets-doc
 %license LICENSE

++ ipywidgets-7.4.1.tar.gz -> ipywidgets-7.4.2.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipywidgets-7.4.1/PKG-INFO 
new/ipywidgets-7.4.2/PKG-INFO
--- old/ipywidgets-7.4.1/PKG-INFO   2018-08-31 22:11:04.0 +0200
+++ new/ipywidgets-7.4.2/PKG-INFO   2018-09-14 22:46:14.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: ipywidgets
-Version: 7.4.1
+Version: 7.4.2
 Summary: IPython HTML widgets for Jupyter
 Home-page: http://ipython.org
 Author: IPython Development Team
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipywidgets-7.4.1/docs/source/embedding.md 
new/ipywidgets-7.4.2/docs/source/embedding.md
--- old/ipywidgets-7.4.1/docs/source/embedding.md   2018-08-31 
21:57:55.0 +0200
+++ new/ipywidgets-7.4.2/docs/source/embedding.md   2018-09-14 
22:38:33.0 +0200
@@ -122,7 

commit python-jupyter_ipywidgets for openSUSE:Factory

2018-08-10 Thread root
Hello community,

here is the log from the commit of package python-jupyter_ipywidgets for 
openSUSE:Factory checked in at 2018-08-10 09:48:21

Comparing /work/SRC/openSUSE:Factory/python-jupyter_ipywidgets (Old)
 and  /work/SRC/openSUSE:Factory/.python-jupyter_ipywidgets.new (New)


Package is "python-jupyter_ipywidgets"

Fri Aug 10 09:48:21 2018 rev:14 rq:627355 version:7.3.2

Changes:

--- 
/work/SRC/openSUSE:Factory/python-jupyter_ipywidgets/python-jupyter_ipywidgets-doc.changes
  2018-04-19 15:32:32.639526257 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-jupyter_ipywidgets.new/python-jupyter_ipywidgets-doc.changes
 2018-08-10 09:48:22.530134423 +0200
@@ -1,0 +2,12 @@
+Fri Aug  3 14:46:23 UTC 2018 - toddrme2...@gmail.com
+
+- Update to version 7.3.2
+  * A new `GridBox` widget is introduced and associated CSS gridproperties are 
added to the layout. This enables using the CSS Grid spec for laying out 
widgets. See the [Widget 
Styling](http://ipywidgets.readthedocs.io/en/stable/examples/Widget%20Styling.html)
 documentation for some examples. Because of this and other model specification 
changes, the view and module versions of widgets was incremented in both the 
base and controls packages. 
([#2107](https://github.com/jupyter-widgets/ipywidgets/pull/2107), 
[#2064](https://github.com/jupyter-widgets/ipywidgets/pull/2064), 
[#1942](https://github.com/jupyter-widgets/ipywidgets/issues/1942))
+  * Widgets with a `description` attribute now also have a 
`description_tooltip` attribute to set a tooltip on the description. The 
tooltip defaults to the description text. Setting `description_tooltip` to `''` 
removes it, and setting it to `None` makes the tooltip default to the 
description text. 
([#2070](https://github.com/jupyter-widgets/ipywidgets/pull/2070))
+  * `'transparent'` is now a valid color for color attributes. 
([#2128](https://github.com/jupyter-widgets/ipywidgets/pull/2128))
+  * Dropdowns now have extra padding to make room for the dropdown arrow. 
([#2052](https://github.com/jupyter-widgets/ipywidgets/issues/2052), 
[#2101](https://github.com/jupyter-widgets/ipywidgets/pull/2101))
+  * Image widget `repr` now truncates the image value to prevent huge amounts 
of output in notebooks. 
([#2111](https://github.com/jupyter-widgets/ipywidgets/pull/2111))
+  * Python 3.3 support is dropped. Python 3.3 support was dropped in the 
Python community in [September 
2017](https://www.python.org/dev/peps/pep-0398/#x-end-of-life). 
([#2129](https://github.com/jupyter-widgets/ipywidgets/pull/2129))
+  * The license information has been consolidated into the LICENSE file, and 
the COPYING.md file is removed. If you are repackaging ipywidgets or 
widgetsnbextension, please make sure to include LICENSE instead of COPYING.md. 
([#2133](https://github.com/jupyter-widgets/ipywidgets/pull/2133), 
[#2048](https://github.com/jupyter-widgets/ipywidgets/pull/2048), 
[#1701](https://github.com/jupyter-widgets/ipywidgets/issues/1701), 
[#1706](https://github.com/jupyter-widgets/ipywidgets/pull/1706))
+
+---
python-jupyter_ipywidgets.changes: same change

Old:

  ipywidgets-7.2.1.tar.gz

New:

  ipywidgets-7.3.2.tar.gz



Other differences:
--
++ python-jupyter_ipywidgets-doc.spec ++
--- /var/tmp/diff_new_pack.hXgNlc/_old  2018-08-10 09:48:23.114135363 +0200
+++ /var/tmp/diff_new_pack.hXgNlc/_new  2018-08-10 09:48:23.118135369 +0200
@@ -28,7 +28,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-jupyter_ipywidgets-doc
-Version:7.2.1
+Version:7.3.2
 Release:0
 Summary:Documentation for python-jupyter_ipywidgets
 License:BSD-3-Clause
@@ -91,7 +91,7 @@
 
 %files
 %defattr(-,root,root,-)
-%doc COPYING.md
+%license LICENSE
 %{_docdir}/python-jupyter_ipywidgets/
 
 %changelog

++ python-jupyter_ipywidgets.spec ++
--- /var/tmp/diff_new_pack.hXgNlc/_old  2018-08-10 09:48:23.134135395 +0200
+++ /var/tmp/diff_new_pack.hXgNlc/_new  2018-08-10 09:48:23.138135402 +0200
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-jupyter_ipywidgets
-Version:7.2.1
+Version:7.3.2
 Release:0
 Summary:IPython HTML widgets for Jupyter
 License:BSD-3-Clause
@@ -52,7 +52,8 @@
 
 %files %{python_files}
 %defattr(-,root,root,-)
-%doc COPYING.md README.md
+%doc README.md
+%license LICENSE
 %{python_sitelib}/*
 
 %changelog

++ ipywidgets-7.2.1.tar.gz -> ipywidgets-7.3.2.tar.gz ++
 27092 lines of diff (skipped)




commit python-jupyter_ipywidgets for openSUSE:Factory

2018-04-19 Thread root
Hello community,

here is the log from the commit of package python-jupyter_ipywidgets for 
openSUSE:Factory checked in at 2018-04-19 15:32:28

Comparing /work/SRC/openSUSE:Factory/python-jupyter_ipywidgets (Old)
 and  /work/SRC/openSUSE:Factory/.python-jupyter_ipywidgets.new (New)


Package is "python-jupyter_ipywidgets"

Thu Apr 19 15:32:28 2018 rev:13 rq:598011 version:7.2.1

Changes:

--- 
/work/SRC/openSUSE:Factory/python-jupyter_ipywidgets/python-jupyter_ipywidgets-doc.changes
  2018-02-27 16:58:28.814909557 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-jupyter_ipywidgets.new/python-jupyter_ipywidgets-doc.changes
 2018-04-19 15:32:32.639526257 +0200
@@ -1,0 +2,15 @@
+Thu Apr 19 04:32:42 UTC 2018 - toddrme2...@gmail.com
+
+- Update to version 7.2.1
+  * A new `FloatLogSlider` widget is a slider with a log scale, suitable for 
exploring a wide range of magnitudes.
+  * `link` and `dlink` are now exported from ipywidgets for convenience, so 
that you can import them directly from ipywidgets instead of needing to import 
them from traitlets. 
([#1923](https://github.com/jupyter-widgets/ipywidgets/pull/1923))
+  * A new option `manual_name` has been added to `interact_manual()` to change 
the name of the update button, for example 
`interact_manual(manual_name='Update')`. 
([#1924](https://github.com/jupyter-widgets/ipywidgets/pull/1923))
+  * The Output widget now has a `.capture()` method, which returns a decorator 
to capture the output of a function.
+  * The Output widget has much more comprehensive documentation in its own 
section. ([#2020](https://github.com/jupyter-widgets/ipywidgets/pull/2020))
+  * Installing `widgetsnbextension` now automatically enables the nbextension 
in Jupyter Notebook 5.3 or later. 
([#1911](https://github.com/jupyter-widgets/ipywidgets/pull/1911))
+  * The default rendering of a widget if widgets are not installed is now a 
short description of the widget in text instead of a much longer HTML message. 
([#2007](https://github.com/jupyter-widgets/ipywidgets/pull/2007))
+  * The JavaScript base widget manager class now has a `resolveUrl` method to 
resolve a URL relative to the current notebook location. 
([#1993](https://github.com/jupyter-widgets/ipywidgets/pull/1993))
+  * The html manager now exposes a way to specify which JavaScript file is 
fetched for a package and the loader used to fetch the library. 
([#1995](https://github.com/jupyter-widgets/ipywidgets/pull/1995), 
[#1998](https://github.com/jupyter-widgets/ipywidgets/pull/1998))
+  * The `@jupyter-widgets/controls` widget specification version was bumped to 
`1.2.0`. Changes include the FloatLogSlider widget and more specific 
documentation about array element types. 
([#2017](https://github.com/jupyter-widgets/ipywidgets/pull/2017))
+
+---
python-jupyter_ipywidgets.changes: same change

Old:

  ipywidgets-7.1.2.tar.gz

New:

  ipywidgets-7.2.1.tar.gz



Other differences:
--
++ python-jupyter_ipywidgets-doc.spec ++
--- /var/tmp/diff_new_pack.RDOAF3/_old  2018-04-19 15:32:34.087466613 +0200
+++ /var/tmp/diff_new_pack.RDOAF3/_new  2018-04-19 15:32:34.091466448 +0200
@@ -28,7 +28,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-jupyter_ipywidgets-doc
-Version:7.1.2
+Version:7.2.1
 Release:0
 Summary:Documentation for python-jupyter_ipywidgets
 License:BSD-3-Clause

python-jupyter_ipywidgets.spec: same change
++ ipywidgets-7.1.2.tar.gz -> ipywidgets-7.2.1.tar.gz ++
 20861 lines of diff (skipped)




commit python-jupyter_ipywidgets for openSUSE:Factory

2018-02-27 Thread root
Hello community,

here is the log from the commit of package python-jupyter_ipywidgets for 
openSUSE:Factory checked in at 2018-02-27 16:58:20

Comparing /work/SRC/openSUSE:Factory/python-jupyter_ipywidgets (Old)
 and  /work/SRC/openSUSE:Factory/.python-jupyter_ipywidgets.new (New)


Package is "python-jupyter_ipywidgets"

Tue Feb 27 16:58:20 2018 rev:12 rq:579995 version:7.1.2

Changes:

--- 
/work/SRC/openSUSE:Factory/python-jupyter_ipywidgets/python-jupyter_ipywidgets-doc.changes
  2018-02-16 21:44:00.664518532 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-jupyter_ipywidgets.new/python-jupyter_ipywidgets-doc.changes
 2018-02-27 16:58:28.814909557 +0100
@@ -1,0 +2,6 @@
+Mon Feb 26 01:22:25 UTC 2018 - toddrme2...@gmail.com
+
+- Update to version 7.1.2
+  * Bugfix release
+
+---
--- 
/work/SRC/openSUSE:Factory/python-jupyter_ipywidgets/python-jupyter_ipywidgets.changes
  2018-02-16 21:44:01.136501510 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-jupyter_ipywidgets.new/python-jupyter_ipywidgets.changes
 2018-02-27 16:58:30.466849870 +0100
@@ -1,0 +2,6 @@
+Mon Feb 26 01:22:09 UTC 2018 - toddrme2...@gmail.com
+
+- Update to version 7.1.2
+  * Bugfix release
+
+---

Old:

  ipywidgets-7.1.1.tar.gz

New:

  ipywidgets-7.1.2.tar.gz



Other differences:
--
++ python-jupyter_ipywidgets-doc.spec ++
--- /var/tmp/diff_new_pack.eHdU6a/_old  2018-02-27 16:58:32.838764169 +0100
+++ /var/tmp/diff_new_pack.eHdU6a/_new  2018-02-27 16:58:32.842764023 +0100
@@ -28,7 +28,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-jupyter_ipywidgets-doc
-Version:7.1.1
+Version:7.1.2
 Release:0
 Summary:Documentation for python-jupyter_ipywidgets
 License:BSD-3-Clause

python-jupyter_ipywidgets.spec: same change
++ ipywidgets-7.1.1.tar.gz -> ipywidgets-7.1.2.tar.gz ++
 4026 lines of diff (skipped)




commit python-jupyter_ipywidgets for openSUSE:Factory

2018-02-16 Thread root
Hello community,

here is the log from the commit of package python-jupyter_ipywidgets for 
openSUSE:Factory checked in at 2018-02-16 21:43:57

Comparing /work/SRC/openSUSE:Factory/python-jupyter_ipywidgets (Old)
 and  /work/SRC/openSUSE:Factory/.python-jupyter_ipywidgets.new (New)


Package is "python-jupyter_ipywidgets"

Fri Feb 16 21:43:57 2018 rev:11 rq:577061 version:7.1.1

Changes:

--- 
/work/SRC/openSUSE:Factory/python-jupyter_ipywidgets/python-jupyter_ipywidgets-doc.changes
  2018-01-20 11:27:22.418517355 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-jupyter_ipywidgets.new/python-jupyter_ipywidgets-doc.changes
 2018-02-16 21:44:00.664518532 +0100
@@ -1,0 +2,6 @@
+Thu Feb 15 14:36:41 UTC 2018 - toddrme2...@gmail.com
+
+- Update to version 7.1.1
+  * Bugfix release
+
+---
python-jupyter_ipywidgets.changes: same change

Old:

  ipywidgets-7.1.0.tar.gz

New:

  ipywidgets-7.1.1.tar.gz



Other differences:
--
++ python-jupyter_ipywidgets-doc.spec ++
--- /var/tmp/diff_new_pack.3byUnW/_old  2018-02-16 21:44:01.768478717 +0100
+++ /var/tmp/diff_new_pack.3byUnW/_new  2018-02-16 21:44:01.768478717 +0100
@@ -28,7 +28,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-jupyter_ipywidgets-doc
-Version:7.1.0
+Version:7.1.1
 Release:0
 Summary:Documentation for python-jupyter_ipywidgets
 License:BSD-3-Clause

python-jupyter_ipywidgets.spec: same change
++ ipywidgets-7.1.0.tar.gz -> ipywidgets-7.1.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipywidgets-7.1.0/PKG-INFO 
new/ipywidgets-7.1.1/PKG-INFO
--- old/ipywidgets-7.1.0/PKG-INFO   2017-12-27 15:58:09.0 +0100
+++ new/ipywidgets-7.1.1/PKG-INFO   2018-01-24 10:41:55.0 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: ipywidgets
-Version: 7.1.0
+Version: 7.1.1
 Summary: IPython HTML widgets for Jupyter
 Home-page: http://ipython.org
 Author: IPython Development Team
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipywidgets-7.1.0/README.md 
new/ipywidgets-7.1.1/README.md
--- old/ipywidgets-7.1.0/README.md  2017-11-22 00:42:32.0 +0100
+++ new/ipywidgets-7.1.1/README.md  2018-01-22 04:24:09.0 +0100
@@ -69,7 +69,7 @@
 
 ```
 pip install ipywidgets
-jupyter nbextension enable --py --sys-prefix widgetsnbextension
+jupyter nbextension enable --py --sys-prefix widgetsnbextension  # can be 
skipped for notebook version 5.3 and above
 ```
 
 - With conda:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipywidgets-7.1.0/docs/environment.yml 
new/ipywidgets-7.1.1/docs/environment.yml
--- old/ipywidgets-7.1.0/docs/environment.yml   2017-12-26 21:31:52.0 
+0100
+++ new/ipywidgets-7.1.1/docs/environment.yml   2018-01-10 23:54:39.0 
+0100
@@ -15,6 +15,6 @@
 - sphinx_rtd_theme
 - tornado
 - python-dateutil
+- recommonmark
 - pip:
-  - recommonmark==0.4 # See https://github.com/rtfd/recommonmark/issues/78
   - jupyter-alabaster-theme
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipywidgets-7.1.0/ipywidgets/_version.py 
new/ipywidgets-7.1.1/ipywidgets/_version.py
--- old/ipywidgets-7.1.0/ipywidgets/_version.py 2017-12-27 15:57:25.0 
+0100
+++ new/ipywidgets-7.1.1/ipywidgets/_version.py 2018-01-24 10:41:45.0 
+0100
@@ -1,7 +1,7 @@
 # Copyright (c) Jupyter Development Team.
 # Distributed under the terms of the Modified BSD License.
 
-version_info = (7, 1, 0, 'final', 0)
+version_info = (7, 1, 1, 'final', 0)
 
 _specifier_ = {'alpha': 'a', 'beta': 'b', 'candidate': 'rc', 'final': ''}
 
@@ -10,6 +10,7 @@
 
 __protocol_version__ = '2.0.0'
 __jupyter_widgets_base_version__ = '1.0.0'
+__jupyter_widgets_output_version__ = '1.0.0'
 __jupyter_widgets_controls_version__ = '1.1.0'
 
 # A compatible @jupyter-widgets/html-manager npm package semver range
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipywidgets-7.1.0/ipywidgets/widgets/widget_output.py 
new/ipywidgets-7.1.1/ipywidgets/widgets/widget_output.py
--- old/ipywidgets-7.1.0/ipywidgets/widgets/widget_output.py2017-11-02 
04:59:36.0 +0100
+++ new/ipywidgets-7.1.1/ipywidgets/widgets/widget_output.py2018-01-24 
10:38:15.0 +0100
@@ -9,6 +9,7 @@
 from .domwidget import DOMWidget
 from .widget import register
 from .widget_core import CoreWidget
+from .._version import __jupyter_widgets_output_version__
 
 import sys
 from traitlets import Unicode, Tuple
@@ -18,7 +19,7 @@
 
 

commit python-jupyter_ipywidgets for openSUSE:Factory

2018-01-20 Thread root
Hello community,

here is the log from the commit of package python-jupyter_ipywidgets for 
openSUSE:Factory checked in at 2018-01-20 11:27:21

Comparing /work/SRC/openSUSE:Factory/python-jupyter_ipywidgets (Old)
 and  /work/SRC/openSUSE:Factory/.python-jupyter_ipywidgets.new (New)


Package is "python-jupyter_ipywidgets"

Sat Jan 20 11:27:21 2018 rev:10 rq:567511 version:7.1.0

Changes:

--- 
/work/SRC/openSUSE:Factory/python-jupyter_ipywidgets/python-jupyter_ipywidgets-doc.changes
  2017-11-29 10:54:29.120676703 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-jupyter_ipywidgets.new/python-jupyter_ipywidgets-doc.changes
 2018-01-20 11:27:22.418517355 +0100
@@ -1,0 +2,11 @@
+Thu Jan 18 06:45:58 UTC 2018 - toddrme2...@gmail.com
+
+- Update to version 7.1
+  * We updated the @jupyter-widgets/controls widget specification
+version to 1.1.0, leading to the version bump to 7.1.
+The new widget model specification now includes new
+description_width and font_weight attributes for the
+ToggleButtonsStyle widget.
+  * There are also other bugfixes in this release.
+
+---
python-jupyter_ipywidgets.changes: same change

Old:

  ipywidgets-7.0.5.tar.gz

New:

  ipywidgets-7.1.0.tar.gz



Other differences:
--
++ python-jupyter_ipywidgets-doc.spec ++
--- /var/tmp/diff_new_pack.lvCnfz/_old  2018-01-20 11:27:23.666458993 +0100
+++ /var/tmp/diff_new_pack.lvCnfz/_new  2018-01-20 11:27:23.670458807 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-jupyter_ipywidgets-doc
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -28,12 +28,12 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-jupyter_ipywidgets-doc
-Version:7.0.5
+Version:7.1.0
 Release:0
 Summary:Documentation for python-jupyter_ipywidgets
 License:BSD-3-Clause
 Group:  Development/Languages/Python
-Url:http://ipython.org
+Url:https://github.com/jupyter-widgets/ipywidgets
 Source: 
https://files.pythonhosted.org/packages/source/i/ipywidgets/ipywidgets-%{version}.tar.gz
 BuildRequires:  %{python_module jupyter_ipywidgets}
 BuildRequires:  fdupes

python-jupyter_ipywidgets.spec: same change
++ ipywidgets-7.0.5.tar.gz -> ipywidgets-7.1.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipywidgets-7.0.5/CONTRIBUTING.md 
new/ipywidgets-7.1.0/CONTRIBUTING.md
--- old/ipywidgets-7.0.5/CONTRIBUTING.md2016-08-13 01:29:16.0 
+0200
+++ new/ipywidgets-7.1.0/CONTRIBUTING.md2017-11-22 00:42:32.0 
+0100
@@ -1,3 +1,15 @@
 # Contributing
 
-See [this page](docs/source/contributing.md).
+We appreciate contributions from the community. (See 
[Guidelines](docs/source/contributing.md) here).
+
+Current developer information can be found in the latest docs 
[here](https://ipywidgets.readthedocs.io/en/latest/developer_docs.html).
+
+For a quick start:
+
+[Developer install information](docs/source/dev_install.md) for installation 
steps.
+
+[Release procedures](docs/source/dev_release.md)
+
+[Testing Contributions](docs/source/dev_testing.md)
+
+[Documentation Contributions](docs/source/dev_docs.md)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipywidgets-7.0.5/PKG-INFO 
new/ipywidgets-7.1.0/PKG-INFO
--- old/ipywidgets-7.0.5/PKG-INFO   2017-11-17 02:38:23.0 +0100
+++ new/ipywidgets-7.1.0/PKG-INFO   2017-12-27 15:58:09.0 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: ipywidgets
-Version: 7.0.5
+Version: 7.1.0
 Summary: IPython HTML widgets for Jupyter
 Home-page: http://ipython.org
 Author: IPython Development Team
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipywidgets-7.0.5/README.md 
new/ipywidgets-7.1.0/README.md
--- old/ipywidgets-7.0.5/README.md  2017-11-17 00:06:09.0 +0100
+++ new/ipywidgets-7.1.0/README.md  2017-11-22 00:42:32.0 +0100
@@ -82,8 +82,8 @@
 
 ### Installing from git
 
-If you want to install ipywidgets from git, **you will need the 
-[yarn](https://yarnpkg.com/) package manager version 1.2.1 or later**.  
+If you want to install ipywidgets from git, **you will need the
+[yarn](https://yarnpkg.com/) package manager version 1.2.1 or later**.
 Installing from git is more complicated and requires a developer install, see 
the [developer 

commit python-jupyter_ipywidgets for openSUSE:Factory

2017-11-29 Thread root
Hello community,

here is the log from the commit of package python-jupyter_ipywidgets for 
openSUSE:Factory checked in at 2017-11-29 10:54:20

Comparing /work/SRC/openSUSE:Factory/python-jupyter_ipywidgets (Old)
 and  /work/SRC/openSUSE:Factory/.python-jupyter_ipywidgets.new (New)


Package is "python-jupyter_ipywidgets"

Wed Nov 29 10:54:20 2017 rev:9 rq:546207 version:7.0.5

Changes:

--- 
/work/SRC/openSUSE:Factory/python-jupyter_ipywidgets/python-jupyter_ipywidgets-doc.changes
  2017-11-20 17:06:56.718419174 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-jupyter_ipywidgets.new/python-jupyter_ipywidgets-doc.changes
 2017-11-29 10:54:29.120676703 +0100
@@ -1,0 +2,6 @@
+Wed Nov 22 22:50:14 UTC 2017 - a...@gmx.de
+
+- update to version 7.0.5:
+  * No changelog
+
+---
python-jupyter_ipywidgets.changes: same change

Old:

  ipywidgets-7.0.4.tar.gz

New:

  ipywidgets-7.0.5.tar.gz



Other differences:
--
++ python-jupyter_ipywidgets-doc.spec ++
--- /var/tmp/diff_new_pack.5ZI7vZ/_old  2017-11-29 10:54:32.916538988 +0100
+++ /var/tmp/diff_new_pack.5ZI7vZ/_new  2017-11-29 10:54:32.920538843 +0100
@@ -28,7 +28,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-jupyter_ipywidgets-doc
-Version:7.0.4
+Version:7.0.5
 Release:0
 Summary:Documentation for python-jupyter_ipywidgets
 License:BSD-3-Clause

python-jupyter_ipywidgets.spec: same change
++ ipywidgets-7.0.4.tar.gz -> ipywidgets-7.0.5.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipywidgets-7.0.4/PKG-INFO 
new/ipywidgets-7.0.5/PKG-INFO
--- old/ipywidgets-7.0.4/PKG-INFO   2017-11-09 20:30:42.0 +0100
+++ new/ipywidgets-7.0.5/PKG-INFO   2017-11-17 02:38:23.0 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: ipywidgets
-Version: 7.0.4
+Version: 7.0.5
 Summary: IPython HTML widgets for Jupyter
 Home-page: http://ipython.org
 Author: IPython Development Team
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipywidgets-7.0.4/README.md 
new/ipywidgets-7.0.5/README.md
--- old/ipywidgets-7.0.4/README.md  2017-10-18 23:17:31.0 +0200
+++ new/ipywidgets-7.0.5/README.md  2017-11-17 00:06:09.0 +0100
@@ -82,7 +82,9 @@
 
 ### Installing from git
 
-If you want to install ipywidgets from git, **you will need 
[npm](https://www.npmjs.com/) version 3.x or later** (check you version by 
running `npm -v` from a terminal).  Installing from git is more complicated and 
requires a developer install, see the [developer 
install](docs/source/dev_install.md) instructions.
+If you want to install ipywidgets from git, **you will need the 
+[yarn](https://yarnpkg.com/) package manager version 1.2.1 or later**.  
+Installing from git is more complicated and requires a developer install, see 
the [developer install](docs/source/dev_install.md) instructions.
 
 To install the latest master version from the root directory of the source
 code, run ``dev-install.sh``. To only build the Python package enter ``pip 
install -e .``.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipywidgets-7.0.4/docs/source/dev_install.md 
new/ipywidgets-7.0.5/docs/source/dev_install.md
--- old/ipywidgets-7.0.4/docs/source/dev_install.md 2017-10-18 
23:17:31.0 +0200
+++ new/ipywidgets-7.0.5/docs/source/dev_install.md 2017-11-17 
00:06:09.0 +0100
@@ -6,11 +6,7 @@
 
 To install ipywidgets from git, you will need:
 
-- [npm](https://www.npmjs.com/) **version 3.x or later**
-  + Check your version by running `npm -v` from a terminal.
-  + *Note: If you install using sudo, you need to make sure that npm is also
-available in the PATH used with sudo.*
-
+- [yarn](https://yarnpkg.com/) package manager ** version 1.2.1 or later **
 
 - the latest [Jupyter notebook development 
release](https://github.com/jupyter/notebook)
   + Everything in the ipywidgets repository is developed using Jupyter 
@@ -37,10 +33,10 @@
 
 To build and test changes, run the following commands in the ipywidgets 
repository root directory, empty your browser's cache, and refresh the page.
 
-npm run clean
-npm run build
+yarn run clean
+yarn run build
 
-If your changes are confined to one package (for example, just in the 
widgetsnbextension package), then it may be sufficient to just run `npm run 
build` in that specific directory.
+If your changes are confined to one package (for example, just in the 
widgetsnbextension package), then it may be sufficient to just run `yarn 

commit python-jupyter_ipywidgets for openSUSE:Factory

2017-11-20 Thread root
Hello community,

here is the log from the commit of package python-jupyter_ipywidgets for 
openSUSE:Factory checked in at 2017-11-20 17:05:55

Comparing /work/SRC/openSUSE:Factory/python-jupyter_ipywidgets (Old)
 and  /work/SRC/openSUSE:Factory/.python-jupyter_ipywidgets.new (New)


Package is "python-jupyter_ipywidgets"

Mon Nov 20 17:05:55 2017 rev:8 rq:542944 version:7.0.4

Changes:

--- 
/work/SRC/openSUSE:Factory/python-jupyter_ipywidgets/python-jupyter_ipywidgets-doc.changes
  2017-11-09 13:57:34.427604326 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-jupyter_ipywidgets.new/python-jupyter_ipywidgets-doc.changes
 2017-11-20 17:06:56.718419174 +0100
@@ -1,0 +2,6 @@
+Tue Nov 14 16:34:24 UTC 2017 - a...@gmx.de
+
+- update to version 7.0.4:
+  * No changelog
+
+---
python-jupyter_ipywidgets.changes: same change

Old:

  ipywidgets-7.0.3.tar.gz

New:

  ipywidgets-7.0.4.tar.gz



Other differences:
--
++ python-jupyter_ipywidgets-doc.spec ++
--- /var/tmp/diff_new_pack.70mKkG/_old  2017-11-20 17:06:58.550352851 +0100
+++ /var/tmp/diff_new_pack.70mKkG/_new  2017-11-20 17:06:58.554352706 +0100
@@ -15,6 +15,7 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 %if 0%{?suse_version} && 0%{?suse_version} > 1320
 %bcond_without tests
 %else
@@ -27,16 +28,16 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-jupyter_ipywidgets-doc
-Version:7.0.3
+Version:7.0.4
 Release:0
 Summary:Documentation for python-jupyter_ipywidgets
 License:BSD-3-Clause
 Group:  Development/Languages/Python
 Url:http://ipython.org
 Source: 
https://files.pythonhosted.org/packages/source/i/ipywidgets/ipywidgets-%{version}.tar.gz
+BuildRequires:  %{python_module jupyter_ipywidgets}
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
-BuildRequires:  %{python_module jupyter_ipywidgets}
 %if %{with tests}
 # Test Requirements
 BuildRequires:  %{python_module nose}

++ python-jupyter_ipywidgets.spec ++
--- /var/tmp/diff_new_pack.70mKkG/_old  2017-11-20 17:06:58.578351838 +0100
+++ /var/tmp/diff_new_pack.70mKkG/_new  2017-11-20 17:06:58.578351838 +0100
@@ -18,17 +18,17 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-jupyter_ipywidgets
-Version:7.0.3
+Version:7.0.4
 Release:0
 Summary:IPython HTML widgets for Jupyter
 License:BSD-3-Clause
 Group:  Development/Languages/Python
 Url:http://ipython.org
 Source: 
https://files.pythonhosted.org/packages/source/i/ipywidgets/ipywidgets-%{version}.tar.gz
-BuildRequires:  fdupes
-BuildRequires:  python-rpm-macros
 BuildRequires:  %{python_module devel}
 BuildRequires:  %{python_module setuptools}
+BuildRequires:  fdupes
+BuildRequires:  python-rpm-macros
 Requires:   python-jupyter_ipykernel >= 4.5.1
 Requires:   python-jupyter_ipython >= 4
 Requires:   python-jupyter_nbformat >= 4.2.0

++ ipywidgets-7.0.3.tar.gz -> ipywidgets-7.0.4.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipywidgets-7.0.3/PKG-INFO 
new/ipywidgets-7.0.4/PKG-INFO
--- old/ipywidgets-7.0.3/PKG-INFO   2017-10-20 22:15:33.0 +0200
+++ new/ipywidgets-7.0.4/PKG-INFO   2017-11-09 20:30:42.0 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: ipywidgets
-Version: 7.0.3
+Version: 7.0.4
 Summary: IPython HTML widgets for Jupyter
 Home-page: http://ipython.org
 Author: IPython Development Team
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' "old/ipywidgets-7.0.3/docs/source/examples/Widget 
Asynchronous.ipynb" "new/ipywidgets-7.0.4/docs/source/examples/Widget 
Asynchronous.ipynb"
--- "old/ipywidgets-7.0.3/docs/source/examples/Widget Asynchronous.ipynb"   
2017-10-18 23:17:31.0 +0200
+++ "new/ipywidgets-7.0.4/docs/source/examples/Widget Asynchronous.ipynb"   
2017-11-09 19:43:56.0 +0100
@@ -273,7 +273,7 @@
 "total = 100\n",
 "for i in range(total):\n",
 "time.sleep(0.2)\n",
-"progress.value = (i+1)/total\n",
+"progress.value = float(i+1)/total\n",
 "\n",
 "thread = threading.Thread(target=work, args=(progress,))\n",
 "display(progress)\n",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipywidgets-7.0.3/ipywidgets/_version.py 
new/ipywidgets-7.0.4/ipywidgets/_version.py
--- old/ipywidgets-7.0.3/ipywidgets/_version.py 2017-10-20 22:15:13.0 
+0200
+++ 

commit python-jupyter_ipywidgets for openSUSE:Factory

2017-11-09 Thread root
Hello community,

here is the log from the commit of package python-jupyter_ipywidgets for 
openSUSE:Factory checked in at 2017-11-09 13:56:55

Comparing /work/SRC/openSUSE:Factory/python-jupyter_ipywidgets (Old)
 and  /work/SRC/openSUSE:Factory/.python-jupyter_ipywidgets.new (New)


Package is "python-jupyter_ipywidgets"

Thu Nov  9 13:56:55 2017 rev:7 rq:536939 version:7.0.3

Changes:

--- 
/work/SRC/openSUSE:Factory/python-jupyter_ipywidgets/python-jupyter_ipywidgets-doc.changes
  2017-10-03 23:16:30.876923974 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-jupyter_ipywidgets.new/python-jupyter_ipywidgets-doc.changes
 2017-11-09 13:57:34.427604326 +0100
@@ -1,0 +2,6 @@
+Thu Oct 26 17:28:03 UTC 2017 - toddrme2...@gmail.com
+
+- Update to 7.0.3
+  * No changelog
+  
+---
--- 
/work/SRC/openSUSE:Factory/python-jupyter_ipywidgets/python-jupyter_ipywidgets.changes
  2017-10-03 23:16:30.960912154 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-jupyter_ipywidgets.new/python-jupyter_ipywidgets.changes
 2017-11-09 13:57:37.459493874 +0100
@@ -1,0 +2,6 @@
+Thu Oct 26 17:28:03 UTC 2017 - toddrme2...@gmail.com
+
+- Update to 7.0.3
+  * No changelog
+
+---

Old:

  ipywidgets-7.0.1.tar.gz

New:

  ipywidgets-7.0.3.tar.gz



Other differences:
--
++ python-jupyter_ipywidgets-doc.spec ++
--- /var/tmp/diff_new_pack.j1lXHg/_old  2017-11-09 13:57:38.167468082 +0100
+++ /var/tmp/diff_new_pack.j1lXHg/_new  2017-11-09 13:57:38.171467937 +0100
@@ -27,7 +27,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-jupyter_ipywidgets-doc
-Version:7.0.1
+Version:7.0.3
 Release:0
 Summary:Documentation for python-jupyter_ipywidgets
 License:BSD-3-Clause

python-jupyter_ipywidgets.spec: same change
++ ipywidgets-7.0.1.tar.gz -> ipywidgets-7.0.3.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipywidgets-7.0.1/PKG-INFO 
new/ipywidgets-7.0.3/PKG-INFO
--- old/ipywidgets-7.0.1/PKG-INFO   2017-09-16 05:29:52.0 +0200
+++ new/ipywidgets-7.0.3/PKG-INFO   2017-10-20 22:15:33.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: ipywidgets
-Version: 7.0.1
+Version: 7.0.3
 Summary: IPython HTML widgets for Jupyter
 Home-page: http://ipython.org
 Author: IPython Development Team
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipywidgets-7.0.1/ipywidgets/_version.py 
new/ipywidgets-7.0.3/ipywidgets/_version.py
--- old/ipywidgets-7.0.1/ipywidgets/_version.py 2017-09-16 05:28:19.0 
+0200
+++ new/ipywidgets-7.0.3/ipywidgets/_version.py 2017-10-20 22:15:13.0 
+0200
@@ -1,7 +1,7 @@
 # Copyright (c) Jupyter Development Team.
 # Distributed under the terms of the Modified BSD License.
 
-version_info = (7, 0, 1, 'final', 0)
+version_info = (7, 0, 3, 'final', 0)
 
 _specifier_ = {'alpha': 'a', 'beta': 'b', 'candidate': 'rc', 'final': ''}
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipywidgets-7.0.1/ipywidgets/embed.py 
new/ipywidgets-7.0.3/ipywidgets/embed.py
--- old/ipywidgets-7.0.1/ipywidgets/embed.py2017-09-13 04:09:34.0 
+0200
+++ new/ipywidgets-7.0.3/ipywidgets/embed.py2017-10-19 23:44:14.0 
+0200
@@ -13,6 +13,7 @@
 import json
 from .widgets import Widget, DOMWidget
 from .widgets.widget_link import Link
+from .widgets.docutils import doc_subst
 from ._version import __html_manager_version__
 
 snippet_template = u"""
@@ -89,14 +90,6 @@
 the scripts.
 """
 
-def _doc_subst(func):
-""" Substitute format strings in class docstring """
-# Strip the snippets to avoid trailing new lines and whitespace
-stripped_snippets = {
-key: snippet.strip() for (key, snippet) in _doc_snippets.items()
-}
-func.__doc__ = func.__doc__.format(**stripped_snippets)
-return func
 
 def _find_widget_refs_by_state(widget, state):
 """Find references to other widgets in a widget's state"""
@@ -187,7 +180,7 @@
 return state
 
 
-@_doc_subst
+@doc_subst(_doc_snippets)
 def embed_data(views, drop_defaults=True, state=None):
 """Gets data for embedding.
 
@@ -234,7 +227,7 @@
 return dict(manager_state=json_data, view_specs=view_specs)
 
 
-@_doc_subst
+@doc_subst(_doc_snippets)
 def embed_snippet(views,
   drop_defaults=True,
   state=None,
@@ -277,7 +270,7 @@
 return snippet_template.format(**values)
 
 
-@_doc_subst
+@doc_subst(_doc_snippets)
 def embed_minimal_html(fp, views, title=u'IPyWidget 

commit python-jupyter_ipywidgets for openSUSE:Factory

2017-10-04 Thread root
Hello community,

here is the log from the commit of package python-jupyter_ipywidgets for 
openSUSE:Factory checked in at 2017-10-03 23:16:30

Comparing /work/SRC/openSUSE:Factory/python-jupyter_ipywidgets (Old)
 and  /work/SRC/openSUSE:Factory/.python-jupyter_ipywidgets.new (New)


Package is "python-jupyter_ipywidgets"

Tue Oct  3 23:16:30 2017 rev:6 rq:527407 version:7.0.1

Changes:

--- 
/work/SRC/openSUSE:Factory/python-jupyter_ipywidgets/python-jupyter_ipywidgets-doc.changes
  2017-05-17 17:13:58.098179075 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-jupyter_ipywidgets.new/python-jupyter_ipywidgets-doc.changes
 2017-10-03 23:16:30.876923974 +0200
@@ -1,0 +2,49 @@
+Tue Sep 19 20:31:32 UTC 2017 - toddrme2...@gmail.com
+
+- Update to version 7.0.1
+  + Major user-visible changes in ipywidgets 7.0 include:
+* Widgets are now displayed in the output area in the classic notebook and 
are treated as any other output. This allows the widgets to work more naturally 
with other cell output. To delete a widget, clear the output from the cell. 
Output from functions triggered by a widget view is appended to the output area 
that contains the widget view. This means that printed text will be appended to 
the output, and calling `clear_output()` will delete the entire output, 
including the widget view. 
([#1274](https://github.com/jupyter-widgets/ipywidgets/pull/1274), 
[#1353](https://github.com/jupyter-widgets/ipywidgets/pull/1353))
+* Removed the version validation check since it was causing too many false 
warnings about the widget javascript not being installed or the wrong version 
number. It is now up to the user to ensure that the ipywidgets and 
widgetsnbextension packages are compatible. 
([#1219](https://github.com/jupyter-widgets/ipywidgets/pull/1219))
+* The documentation theme is changed to the new standard Jupyter theme. 
([#1363](https://github.com/jupyter-widgets/ipywidgets/pull/1363))
+* The `layout` and `style` traits can be set with a dictionary for 
convenience, which will automatically converted to a Layout or Style object, 
like `IntSlider(layout={'width': '100%'}, style={'handle_color': 
'lightgreen'})`. 
([#1253](https://github.com/jupyter-widgets/ipywidgets/pull/1253))
+* The Select widget now is a listbox instead of a dropdown, reverting back 
to the pre-6.0 behavior. 
([#1238](https://github.com/jupyter-widgets/ipywidgets/pull/1238))
+* The Select and SelectMultiple widgets now have a `rows` attribute for 
the number of rows to display, consistent with the Textarea widget. The 
`layout.height` attribute overrides this to control the height of the widget. 
([#1250](https://github.com/jupyter-widgets/ipywidgets/pull/1250))
+* Selection widgets (`Select`, `Dropdown`, `ToggleButtons`, etc.) have new 
`.value`, `.label`, and `.index` traits to make it easier to access or change 
the selected option.  
([#1262](https://github.com/jupyter-widgets/ipywidgets/pull/1262), 
[#1513](https://github.com/jupyter-widgets/ipywidgets/pull/1513))
+* Selection container widgets (`Accordion`, `Tabs`) can have their 
`.selected_index` set to `None` to deselect all items. 
([#1495](https://github.com/jupyter-widgets/ipywidgets/pull/1495))
+* The `Play` widget range is now inclusive (max value is max, instead of 
max-1), to be consistent with Sliders
+* The `Play` widget now has an optional repeat toggle button (visible by 
default). ([#1190](https://github.com/jupyter-widgets/ipywidgets/pull/1190))
+* A refactoring of the text, slider, slider range, and progress widgets in 
resulted in the progress widgets losing their `step` attribute (which was 
previously ignored), and a number of these widgets changing their `_model_name` 
and/or `_view_name` attributes 
([#1290](https://github.com/jupyter-widgets/ipywidgets/pull/1290))
+* The `Checkbox` description is now on the right of the checkbox and is 
clickable. The `Checkbox` widget has a new `indent` attribute (defaults to 
`True`) to line up nicely with controls that have descriptions. To make the 
checkbox align to the left, set `indent` to `False`. 
([#1346](https://github.com/jupyter-widgets/ipywidgets/pull/1346))
+* A new Password widget, which behaves exactly like the Text widget, but 
hides the typed text: `Password()`. 
([#1310](https://github.com/jupyter-widgets/ipywidgets/pull/1310))
+* A new SelectionRangeSlider widget for selecting ranges from ordered 
lists of objects. For example, this enables having a slider to select a date 
range. ([#1356](https://github.com/jupyter-widgets/ipywidgets/pull/1356))
+* The `Label` widget now has no width restriction. 
([#1269](https://github.com/jupyter-widgets/ipywidgets/pull/1269))
+* The description width is now configurable with the 
`.style.description_width` attribute 

commit python-jupyter_ipywidgets for openSUSE:Factory

2017-05-17 Thread root
Hello community,

here is the log from the commit of package python-jupyter_ipywidgets for 
openSUSE:Factory checked in at 2017-05-17 17:13:56

Comparing /work/SRC/openSUSE:Factory/python-jupyter_ipywidgets (Old)
 and  /work/SRC/openSUSE:Factory/.python-jupyter_ipywidgets.new (New)


Package is "python-jupyter_ipywidgets"

Wed May 17 17:13:56 2017 rev:5 rq:491430 version:6.0.0

Changes:

New Changes file:

--- /dev/null   2017-03-01 00:40:19.279048016 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-jupyter_ipywidgets.new/python-jupyter_ipywidgets-doc.changes
 2017-05-17 17:13:58.098179075 +0200
@@ -0,0 +1,96 @@
+---
+Thu Apr 27 07:31:05 UTC 2017 - toddrme2...@gmail.com
+
+- Implement single-spec version.
+
+---
+Thu Mar 30 19:45:15 UTC 2017 - toddrme2...@gmail.com
+
+- Update to 6.0
+  * Rendering of Jupyter interactive widgets in various web contexts
+  *  Addition of a DatePicker widget in the core widget collection.
+  * Changes to the automatic control generation syntax in @interact, inspired 
by the Sage interact syntax.
+  * Removal of APIs which had been deprecated in 5.0
+  * A new API for custom styling of widgets is provided, through a top-level 
`style` attribute. For example, the color of a slider handler can be set by 
`slider.style.handle_color`.
+  * Removal of the Proxy and PlaceProxy widgets.
+  * Removed the button_style attribute of the Dropdown widget
+  * Addition of an OutputWidget for capturing output and rich display objects. 
@interact has changed to use an OutputWidget for function output instead of 
overwriting the output area of a cell.
+  * The jupyter-js-widgets Javascript implementation now relies on the 
PhosphorJS framework for the management of rich layout and a better integration 
of JupyterLab.
+  * Numerous bug fixes.
+- Create doc subpackage
+
+---
+Fri Dec  9 03:56:42 UTC 2016 - qantas94he...@gmail.com
+
+- Remove unnecessary dependency on npm
+
+---
+Thu Feb 18 10:57:47 UTC 2016 - toddrme2...@gmail.com
+
+- update to version 4.1.1:
+  * More detailed dev-install instructions
+  * add 'npm is required' message when files are missing
+  * fix version_info
+  * Don't prefix with v
+  * Update the RELEASE instructions
+- update to version 4.1.0:
+  * Add release instructions
+  * Reuse backend's widgets
+  * Move ready trigger
+  * Add `ready` event which fires when the widget receives its first state
+  * 0 is falsy
+  * Pass the correct Comm target name in create_widget
+  * Do not send comm_info for workaround widget
+  * Search for css selectors using the parent element
+  * Fixes
+  * Add the ability to change the readout logic easily.
+  * Fix version in py file
+  * Run interact manual on Text widget submit
+  * Fix clean-css too
+  * Include float/int text and progress widgets too
+  * Only update slider description on description change
+  * Fixes, - Behavior so the readout render - Listen to the correct
+jqueryui event
+  * Add `continuous` flag to the sliders, which allows you to set
+whether or not the sliders update as they are being dragged.
+  * Allow for numeric labels and retain type information on selection
+  * Stricter LESS and Bower versions, and make sure bower is ran silently
+  * Fix collapse/expand bug on accordion title change.
+  * Import get_ipython() since it is no longer available globally.
+  * Don't filter on the javascript side
+  * Use the _get_comm_info method to reconstruct all widget models
+living in the backend.
+  * Close the widget area when there are no more widget views.
+  * Allow change of description
+  * Adding color picker widget
+  * Move create_model back into WidgetManager
+  * Reference persistence callbacks in WidgetManager, not ManagerBase
+  * fix typo in comm creation conditional
+  * Handle case where options are missing in new_widget call.
+  * Fix that/this context error
+  * Change postinstall to prepublish
+  * Bug fix
+  * Finish decoupling of the manager
+  * Begin notebook decoupling effort.
+
+---
+Mon Oct 12 13:47:20 UTC 2015 - toddrme2...@gmail.com
+
+- Update to 4.0.3
+  * Provide link to example notebooks in the README.md
+  * Correct some bugs in the code 
+  * Add __version__ to ipywidgets package
+  * Call correct superclass in AccordionView
+  * Make long description part of setup.py
+  * Remove README.md from manifest
+
+---
+Wed Sep 16 09:41:12 UTC 2015 - toddrme2...@gmail.com
+
+- Fix npm dependency on openSUSE:Factory
+

commit python-jupyter_ipywidgets for openSUSE:Factory

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package python-jupyter_ipywidgets for 
openSUSE:Factory checked in at 2016-02-22 08:57:34

Comparing /work/SRC/openSUSE:Factory/python-jupyter_ipywidgets (Old)
 and  /work/SRC/openSUSE:Factory/.python-jupyter_ipywidgets.new (New)


Package is "python-jupyter_ipywidgets"

Changes:

--- 
/work/SRC/openSUSE:Factory/python-jupyter_ipywidgets/python-jupyter_ipywidgets.changes
  2015-10-14 16:45:15.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-jupyter_ipywidgets.new/python-jupyter_ipywidgets.changes
 2016-02-22 08:57:43.0 +0100
@@ -1,0 +2,49 @@
+Thu Feb 18 10:57:47 UTC 2016 - toddrme2...@gmail.com
+
+- update to version 4.1.1:
+  * More detailed dev-install instructions
+  * add 'npm is required' message when files are missing
+  * fix version_info
+  * Don't prefix with v
+  * Update the RELEASE instructions
+- update to version 4.1.0:
+  * Add release instructions
+  * Reuse backend's widgets
+  * Move ready trigger
+  * Add `ready` event which fires when the widget receives its first state
+  * 0 is falsy
+  * Pass the correct Comm target name in create_widget
+  * Do not send comm_info for workaround widget
+  * Search for css selectors using the parent element
+  * Fixes
+  * Add the ability to change the readout logic easily.
+  * Fix version in py file
+  * Run interact manual on Text widget submit
+  * Fix clean-css too
+  * Include float/int text and progress widgets too
+  * Only update slider description on description change
+  * Fixes, - Behavior so the readout render - Listen to the correct
+jqueryui event
+  * Add `continuous` flag to the sliders, which allows you to set
+whether or not the sliders update as they are being dragged.
+  * Allow for numeric labels and retain type information on selection
+  * Stricter LESS and Bower versions, and make sure bower is ran silently
+  * Fix collapse/expand bug on accordion title change.
+  * Import get_ipython() since it is no longer available globally.
+  * Don't filter on the javascript side
+  * Use the _get_comm_info method to reconstruct all widget models
+living in the backend.
+  * Close the widget area when there are no more widget views.
+  * Allow change of description
+  * Adding color picker widget
+  * Move create_model back into WidgetManager
+  * Reference persistence callbacks in WidgetManager, not ManagerBase
+  * fix typo in comm creation conditional
+  * Handle case where options are missing in new_widget call.
+  * Fix that/this context error
+  * Change postinstall to prepublish
+  * Bug fix
+  * Finish decoupling of the manager
+  * Begin notebook decoupling effort.
+
+---

Old:

  ipywidgets-4.0.3.tar.gz

New:

  ipywidgets-4.1.1.tar.gz



Other differences:
--
++ python-jupyter_ipywidgets.spec ++
--- /var/tmp/diff_new_pack.KTtf5F/_old  2016-02-22 08:57:44.0 +0100
+++ /var/tmp/diff_new_pack.KTtf5F/_new  2016-02-22 08:57:44.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-jupyter_ipywidgets
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   python-jupyter_ipywidgets
-Version:4.0.3
+Version:4.1.1
 Release:0
 Summary:IPython HTML widgets for Jupyter
 License:BSD-3-Clause

++ ipywidgets-4.0.3.tar.gz -> ipywidgets-4.1.1.tar.gz ++
 1861 lines of diff (skipped)




commit python-jupyter_ipywidgets for openSUSE:Factory

2015-10-14 Thread h_root
Hello community,

here is the log from the commit of package python-jupyter_ipywidgets for 
openSUSE:Factory checked in at 2015-10-14 16:45:13

Comparing /work/SRC/openSUSE:Factory/python-jupyter_ipywidgets (Old)
 and  /work/SRC/openSUSE:Factory/.python-jupyter_ipywidgets.new (New)


Package is "python-jupyter_ipywidgets"

Changes:

--- 
/work/SRC/openSUSE:Factory/python-jupyter_ipywidgets/python-jupyter_ipywidgets.changes
  2015-09-30 05:50:36.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-jupyter_ipywidgets.new/python-jupyter_ipywidgets.changes
 2015-10-14 16:45:15.0 +0200
@@ -1,0 +2,11 @@
+Mon Oct 12 13:47:20 UTC 2015 - toddrme2...@gmail.com
+
+- Update to 4.0.3
+  * Provide link to example notebooks in the README.md
+  * Correct some bugs in the code 
+  * Add __version__ to ipywidgets package
+  * Call correct superclass in AccordionView
+  * Make long description part of setup.py
+  * Remove README.md from manifest
+
+---

Old:

  ipywidgets-4.0.2.tar.gz

New:

  ipywidgets-4.0.3.tar.gz



Other differences:
--
++ python-jupyter_ipywidgets.spec ++
--- /var/tmp/diff_new_pack.mtI8To/_old  2015-10-14 16:45:15.0 +0200
+++ /var/tmp/diff_new_pack.mtI8To/_new  2015-10-14 16:45:15.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python-jupyter_ipywidgets
-Version:4.0.2
+Version:4.0.3
 Release:0
 Summary:IPython HTML widgets for Jupyter
 License:BSD-3-Clause

++ ipywidgets-4.0.2.tar.gz -> ipywidgets-4.0.3.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipywidgets-4.0.2/PKG-INFO 
new/ipywidgets-4.0.3/PKG-INFO
--- old/ipywidgets-4.0.2/PKG-INFO   2015-08-04 00:18:39.0 +0200
+++ new/ipywidgets-4.0.3/PKG-INFO   2015-09-21 17:49:07.0 +0200
@@ -1,12 +1,33 @@
 Metadata-Version: 1.1
 Name: ipywidgets
-Version: 4.0.2
+Version: 4.0.3
 Summary: IPython HTML widgets for Jupyter
 Home-page: http://ipython.org
 Author: IPython Development Team
 Author-email: ipython-...@scipy.org
 License: BSD
-Description: UNKNOWN
+Description: 
+.. image:: https://img.shields.io/pypi/v/ipywidgets.svg
+   :target: https://pypi.python.org/pypi/ipywidgets/
+   :alt: Version Number
+
+.. image:: https://img.shields.io/pypi/dm/ipywidgets.svg
+   :target: https://pypi.python.org/pypi/ipywidgets/
+   :alt: Number of PyPI downloads
+
+Interactive HTML Widgets
+
+
+Interactive HTML widgets for Jupyter notebooks and the IPython kernel.
+
+Usage
+=
+
+.. code-block:: python
+
+from ipywidgets import IntSlider
+IntSlider()
+
 Keywords: Interactive,Interpreter,Shell,Web
 Platform: Linux
 Platform: Mac OS X
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipywidgets-4.0.2/README.md 
new/ipywidgets-4.0.3/README.md
--- old/ipywidgets-4.0.2/README.md  2015-07-30 18:34:34.0 +0200
+++ new/ipywidgets-4.0.3/README.md  2015-09-15 01:32:04.0 +0200
@@ -2,7 +2,7 @@
 
 [![Build 
Status](https://travis-ci.org/ipython/ipywidgets.svg?branch=master)](https://travis-ci.org/ipython/ipywidgets)
 [![Join the chat at 
https://gitter.im/ipython/ipywidgets](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/ipython/ipywidgets?utm_source=badge_medium=badge_campaign=pr-badge_content=badge)
 
-Interactive HTML widgets for Jupyter notebooks and the IPython kernel.
+[Interactive HTML 
widgets](https://github.com/ipython/ipywidgets/blob/master/examples/Index.ipynb)
 for Jupyter notebooks and the IPython kernel.
 
 ## Install
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipywidgets-4.0.2/examples/Controller.ipynb 
new/ipywidgets-4.0.3/examples/Controller.ipynb
--- old/ipywidgets-4.0.2/examples/Controller.ipynb  1970-01-01 
01:00:00.0 +0100
+++ new/ipywidgets-4.0.3/examples/Controller.ipynb  2015-09-15 
01:32:04.0 +0200
@@ -0,0 +1,90 @@
+{
+ "cells": [
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+"# Using Game Controllers in the Jupyter Notebook"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+"The controller widget automatically detects connected gamepad and 
joysticks"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 5,
+   "metadata": {
+"collapsed": false
+   },
+   "outputs": [],
+   "source": [
+"from ipywidgets import Controller"
+   ]
+  },
+  {
+   

commit python-jupyter_ipywidgets for openSUSE:Factory

2015-09-29 Thread h_root
Hello community,

here is the log from the commit of package python-jupyter_ipywidgets for 
openSUSE:Factory checked in at 2015-09-30 05:50:36

Comparing /work/SRC/openSUSE:Factory/python-jupyter_ipywidgets (Old)
 and  /work/SRC/openSUSE:Factory/.python-jupyter_ipywidgets.new (New)


Package is "python-jupyter_ipywidgets"

Changes:

New Changes file:

--- /dev/null   2015-09-24 09:51:01.260026505 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-jupyter_ipywidgets.new/python-jupyter_ipywidgets.changes
 2015-09-30 05:50:36.0 +0200
@@ -0,0 +1,10 @@
+---
+Wed Sep 16 09:41:12 UTC 2015 - toddrme2...@gmail.com
+
+- Fix npm dependency on openSUSE:Factory
+
+---
+Thu Aug 13 11:52:09 UTC 2015 - toddrme2...@gmail.com
+
+- Initial version
+

New:

  ipywidgets-4.0.2.tar.gz
  python-jupyter_ipywidgets.changes
  python-jupyter_ipywidgets.spec



Other differences:
--
++ python-jupyter_ipywidgets.spec ++
#
# spec file for package python-jupyter_ipywidgets
#
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
#
# 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 http://bugs.opensuse.org/
#


Name:   python-jupyter_ipywidgets
Version:4.0.2
Release:0
Summary:IPython HTML widgets for Jupyter
License:BSD-3-Clause
Group:  Development/Languages/Python
Url:http://ipython.org
Source: 
https://pypi.python.org/packages/source/i/ipywidgets/ipywidgets-%{version}.tar.gz
BuildRequires:  python-devel
BuildRequires:  python-jupyter_ipykernel
BuildRequires:  python-jupyter_ipython >= 4
BuildRequires:  python-jupyter_notebook
BuildRequires:  python-setuptools
BuildRequires:  python-setuptools
BuildRequires:  python-traitlets
# Test requirements
BuildRequires:  python-nose
# Python 2-only test requirements
BuildRequires:  python-mock
Requires:   python-jupyter_ipykernel
Requires:   python-jupyter_ipython >= 4
Requires:   python-jupyter_notebook
Requires:   python-traitlets
%if 0%{?suse_version} > 1320
BuildRequires:  nodejs-npm
Requires:   nodejs-npm
%else
BuildRequires:  npm
Requires:   npm
%endif
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
%if 0%{?suse_version} && 0%{?suse_version} <= 1110
%{!?python_sitelib: %global python_sitelib %(python -c "from 
distutils.sysconfig import get_python_lib; print get_python_lib()")}
%else
BuildArch:  noarch
%endif

%description
Interactive HTML widgets for Jupyter notebooks and the IPython kernel.

%prep
%setup -q -n ipywidgets-%{version}

%build
python setup.py build

%install
python setup.py install --prefix=%{_prefix} --root=%{buildroot}

# This is meant to be used as a stand-alone script, so set permissions
chmod a+x %{buildroot}%{python_sitelib}/ipywidgets/install.py

%check
nosetests

%files
%defattr(-,root,root,-)
%doc COPYING.md README.md
%doc examples/
%{python_sitelib}/*

%changelog