Hello community,

here is the log from the commit of package python-dash for openSUSE:Leap:15.2 
checked in at 2020-03-17 04:15:42
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Leap:15.2/python-dash (Old)
 and      /work/SRC/openSUSE:Leap:15.2/.python-dash.new.3160 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-dash"

Tue Mar 17 04:15:42 2020 rev:4 rq:785602 version:1.9.1

Changes:
--------
--- /work/SRC/openSUSE:Leap:15.2/python-dash/python-dash.changes        
2020-03-16 12:21:10.311709630 +0100
+++ /work/SRC/openSUSE:Leap:15.2/.python-dash.new.3160/python-dash.changes      
2020-03-17 04:16:09.908994804 +0100
@@ -1,0 +2,10 @@
+Sat Mar 14 16:02:04 UTC 2020 - Arun Persaud <[email protected]>
+
+- specfile:
+  * be more specific in files section
+
+- update to version 1.9.1:
+  * #1133 Allow the compress config variable to be set with an
+     environment variable with DASH_COMPRESS=FALSE
+
+-------------------------------------------------------------------

Old:
----
  dash-1.9.0.tar.gz

New:
----
  dash-1.9.1.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python-dash.spec ++++++
--- /var/tmp/diff_new_pack.EFpKvU/_old  2020-03-17 04:16:10.560995182 +0100
+++ /var/tmp/diff_new_pack.EFpKvU/_new  2020-03-17 04:16:10.560995182 +0100
@@ -19,7 +19,7 @@
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 %define         skip_python2 1
 Name:           python-dash
-Version:        1.9.0
+Version:        1.9.1
 Release:        0
 Summary:        Python framework for building reactive web-apps
 License:        MIT
@@ -27,18 +27,17 @@
 URL:            https://github.com/plotly/dash
 Source:         
https://files.pythonhosted.org/packages/source/d/dash/dash-%{version}.tar.gz
 BuildRequires:  %{python_module setuptools}
+BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
+Requires:       python-Flask >= 0.12
+Requires:       python-Flask-Compress
+Requires:       python-plotly
+BuildArch:      noarch
 # SECTION test requirements
 BuildRequires:  %{python_module Flask >= 0.12}
 BuildRequires:  %{python_module Flask-Compress}
 BuildRequires:  %{python_module plotly}
 # /SECTION
-BuildRequires:  fdupes
-Requires:       python-Flask >= 0.12
-Requires:       python-Flask-Compress
-Requires:       python-plotly
-BuildArch:      noarch
-
 %python_subpackages
 
 %description
@@ -65,6 +64,7 @@
 %license LICENSE
 %python3_only %{_bindir}/dash-generate-components
 %python3_only %{_bindir}/renderer
-%{python_sitelib}/*
+%{python_sitelib}/dash
+%{python_sitelib}/dash-%{version}-py*.egg-info
 
 %changelog

++++++ dash-1.9.0.tar.gz -> dash-1.9.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dash-1.9.0/PKG-INFO new/dash-1.9.1/PKG-INFO
--- old/dash-1.9.0/PKG-INFO     2020-02-04 18:51:00.000000000 +0100
+++ new/dash-1.9.1/PKG-INFO     2020-02-27 23:28:56.000000000 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: dash
-Version: 1.9.0
+Version: 1.9.1
 Summary: A Python framework for building reactive web-apps. Developed by 
Plotly.
 Home-page: https://plot.ly/dash
 Author: Chris Parmer
@@ -80,5 +80,5 @@
 Classifier: Topic :: Software Development :: Widget Sets
 Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*
 Description-Content-Type: text/markdown
-Provides-Extra: testing
 Provides-Extra: dev
+Provides-Extra: testing
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dash-1.9.0/dash/_configs.py 
new/dash-1.9.1/dash/_configs.py
--- old/dash-1.9.0/dash/_configs.py     2020-01-29 22:33:13.000000000 +0100
+++ new/dash-1.9.1/dash/_configs.py     2020-02-27 22:06:46.000000000 +0100
@@ -29,12 +29,13 @@
                 'DASH_HOT_RELOAD_MAX_RETRY',
                 'DASH_SILENCE_ROUTES_LOGGING',
                 'DASH_PRUNE_ERRORS',
+                'DASH_COMPRESS'
             )
         }
     )
 
 
-DASH_ENV_VARS = load_dash_env_vars()
+DASH_ENV_VARS = load_dash_env_vars()  # used in tests
 
 
 def get_combined_config(name, val, default=None):
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dash-1.9.0/dash/dash.py new/dash-1.9.1/dash/dash.py
--- old/dash-1.9.0/dash/dash.py 2020-02-04 01:14:01.000000000 +0100
+++ new/dash-1.9.1/dash/dash.py 2020-02-27 22:06:32.000000000 +0100
@@ -221,7 +221,7 @@
         requests_pathname_prefix=None,
         routes_pathname_prefix=None,
         serve_locally=True,
-        compress=True,
+        compress=None,
         meta_tags=None,
         index_string=_default_index,
         external_scripts=None,
@@ -276,7 +276,9 @@
             routes_pathname_prefix=routes_prefix,
             requests_pathname_prefix=requests_prefix,
             serve_locally=serve_locally,
-            compress=compress,
+            compress=get_combined_config(
+                "compress", compress, True
+            ),
             meta_tags=meta_tags or [],
             external_scripts=external_scripts or [],
             external_stylesheets=external_stylesheets or [],
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dash-1.9.0/dash/version.py 
new/dash-1.9.1/dash/version.py
--- old/dash-1.9.0/dash/version.py      2020-02-04 18:47:35.000000000 +0100
+++ new/dash-1.9.1/dash/version.py      2020-02-27 23:18:51.000000000 +0100
@@ -1 +1 @@
-__version__ = '1.9.0'
+__version__ = '1.9.1'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dash-1.9.0/dash.egg-info/PKG-INFO 
new/dash-1.9.1/dash.egg-info/PKG-INFO
--- old/dash-1.9.0/dash.egg-info/PKG-INFO       2020-02-04 18:51:00.000000000 
+0100
+++ new/dash-1.9.1/dash.egg-info/PKG-INFO       2020-02-27 23:28:56.000000000 
+0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: dash
-Version: 1.9.0
+Version: 1.9.1
 Summary: A Python framework for building reactive web-apps. Developed by 
Plotly.
 Home-page: https://plot.ly/dash
 Author: Chris Parmer
@@ -80,5 +80,5 @@
 Classifier: Topic :: Software Development :: Widget Sets
 Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*
 Description-Content-Type: text/markdown
-Provides-Extra: testing
 Provides-Extra: dev
+Provides-Extra: testing
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dash-1.9.0/dash.egg-info/requires.txt 
new/dash-1.9.1/dash.egg-info/requires.txt
--- old/dash-1.9.0/dash.egg-info/requires.txt   2020-02-04 18:51:00.000000000 
+0100
+++ new/dash-1.9.1/dash.egg-info/requires.txt   2020-02-27 23:28:56.000000000 
+0100
@@ -2,9 +2,9 @@
 flask-compress
 plotly
 dash_renderer==1.2.4
-dash-core-components==1.8.0
+dash-core-components==1.8.1
 dash-html-components==1.0.2
-dash-table==4.6.0
+dash-table==4.6.1
 future
 
 [dev]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dash-1.9.0/requires-install.txt 
new/dash-1.9.1/requires-install.txt
--- old/dash-1.9.0/requires-install.txt 2020-02-04 18:49:34.000000000 +0100
+++ new/dash-1.9.1/requires-install.txt 2020-02-27 23:18:51.000000000 +0100
@@ -2,7 +2,7 @@
 flask-compress
 plotly
 dash_renderer==1.2.4
-dash-core-components==1.8.0
+dash-core-components==1.8.1
 dash-html-components==1.0.2
-dash-table==4.6.0
+dash-table==4.6.1
 future
\ No newline at end of file


Reply via email to