Hello community,
here is the log from the commit of package python-jupyter_qgrid for
openSUSE:Factory checked in at 2018-06-15 14:46:08
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-jupyter_qgrid (Old)
and /work/SRC/openSUSE:Factory/.python-jupyter_qgrid.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-jupyter_qgrid"
Fri Jun 15 14:46:08 2018 rev:2 rq:616079 version:1.0.5
Changes:
--------
---
/work/SRC/openSUSE:Factory/python-jupyter_qgrid/python-jupyter_qgrid.changes
2018-06-03 12:36:20.531888930 +0200
+++
/work/SRC/openSUSE:Factory/.python-jupyter_qgrid.new/python-jupyter_qgrid.changes
2018-06-15 14:46:11.232535299 +0200
@@ -1,0 +2,30 @@
+Sun Jun 10 11:06:15 UTC 2018 - [email protected]
+
+- Avoid bashism in scriptlet.
+
+-------------------------------------------------------------------
+Thu Jun 7 21:29:28 UTC 2018 - [email protected]
+
+- Use noun phrase in summary.
+
+-------------------------------------------------------------------
+Thu Jun 7 15:30:57 UTC 2018 - [email protected]
+
+- Update to 1.0.5
+ * Fixes issue where editing cells in a DataFrame with an unnamed
+ index results in an error pop up
+ * Make categorical column filtering work with old versions of
+ pandas, like 0.18
+ * Adds new on and off methods at both the module-level (for
+ listening to events on all qgrid instances) and at the
+ instance-level (for listening to events on individual qgrid
+ instances)
+ * The on and off methods mentioned above should now be used to
+ listen for events instead of listening for the on_value_change
+ event of the _df attribute. In other words using
+ qgrid_widget.observe(on_value_change, names=['_df']) for being
+ notified about changes to the state of the grid (i.e. editing,
+ sorting, filtering) will no longer work.
+- Use || true syntax instead of exit 0
+
+-------------------------------------------------------------------
Old:
----
qgrid-1.0.2.tar.gz
New:
----
qgrid-1.0.5.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-jupyter_qgrid.spec ++++++
--- /var/tmp/diff_new_pack.iWZgH8/_old 2018-06-15 14:46:12.056505159 +0200
+++ /var/tmp/diff_new_pack.iWZgH8/_new 2018-06-15 14:46:12.060505013 +0200
@@ -13,17 +13,18 @@
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
+#
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%bcond_with test
Name: python-jupyter_qgrid
-Version: 1.0.2
+Version: 1.0.5
Release: 0
+Summary: Grid for sorting and filtering DataFrames in Jupyter notebooks
License: Apache-2.0
-Summary: Sorting and Filtering DataFrames in Jupyter Notebook
-Url: https://github.com/quantopian/qgrid
Group: Development/Languages/Python
+Url: https://github.com/quantopian/qgrid
Source:
https://files.pythonhosted.org/packages/source/q/qgrid/qgrid-%{version}.tar.gz
BuildRequires: %{python_module devel}
BuildRequires: %{python_module setuptools}
@@ -73,18 +74,18 @@
%fdupes %{buildroot}%{_datadir}/jupyter/nbextensions/
%post -n python3-jupyter_qgrid
-jupyter nbextension enable --system --py qgrid
-exit 0
+jupyter nbextension enable --system --py qgrid || true
%preun -n python3-jupyter_qgrid
-if [ $1 == 0 ] && [ -d %{python3_sitelib}/qgrid/ ] ; then
- jupyter nbextension disable --system --py qgrid
+if [ $1 = 0 ] && [ -d %{python3_sitelib}/qgrid/ ] ; then
+ jupyter nbextension disable --system --py qgrid || true
fi
-exit 0
%if %{with test}
%check
-%python_expand py.test-%{$python_bin_suffix} qgrid
+%{python_expand export PYTHONDONTWRITEBYTECODE=1
+py.test-%{$python_bin_suffix} qgrid
+}
%endif
%files %{python_files}
++++++ qgrid-1.0.2.tar.gz -> qgrid-1.0.5.tar.gz ++++++
++++ 34100 lines of diff (skipped)