Hello community,
here is the log from the commit of package python-statsmodels for
openSUSE:Leap:15.2 checked in at 2020-03-09 18:11:19
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Leap:15.2/python-statsmodels (Old)
and /work/SRC/openSUSE:Leap:15.2/.python-statsmodels.new.26092 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-statsmodels"
Mon Mar 9 18:11:19 2020 rev:12 rq:777184 version:0.10.2
Changes:
--------
--- /work/SRC/openSUSE:Leap:15.2/python-statsmodels/python-statsmodels.changes
2020-01-15 15:53:33.239601708 +0100
+++
/work/SRC/openSUSE:Leap:15.2/.python-statsmodels.new.26092/python-statsmodels.changes
2020-03-09 18:11:21.897196501 +0100
@@ -1,0 +2,45 @@
+Sun Nov 24 17:37:28 UTC 2019 - Arun Persaud <[email protected]>
+
+- update to version 0.10.2:
+ * This is a bug release and adds compatibility with Python 3.8.
+
+-------------------------------------------------------------------
+Mon Jul 29 10:28:57 UTC 2019 - Bernhard Wiedemann <[email protected]>
+
+- Stop packaging unreproducible .pyc files
+
+-------------------------------------------------------------------
+Mon Jul 22 15:54:17 UTC 2019 - Todd R <[email protected]>
+
+- Update to 0.10.1
+ * Bugfix release
+- Update to 0.10.0
+ Highlights:
+ * Generalized Additive Models
+ * Conditional Models
+ * Dimension Reduction Methods
+ * Regression using Quadratic Inference Functions (QIF)
+ * Gaussian Process Regression
+ * Burg's Method
+ * Time series Tools
+ * Knockoff effect estimation has been added for a many models
+ * Influence functions are available for GLM and generic MLE models:
+- Remove upstream-included pandas_to_datetime.patch
+
+-------------------------------------------------------------------
+Tue Aug 14 16:57:55 UTC 2018 - [email protected]
+
+- Update to 0.9.0
+ Highlights:
+ * statespace refactoring, Markov Switching Kim smoother
+ * Bayesian mixed GLM
+ * Gaussian Imputation
+ * new multivariate methods: factor analysis, MANOVA, repeated measures
within ANOVA
+ * GLM var_weights in addition to freq_weights
+ * Holt-Winters and Exponential Smoothing
+- Add pandas_to_datetime.patch
+ to_datetime has been moved in pandas.
+ Should be in next release
+ From: https://github.com/statsmodels/statsmodels/pull/4640
+
+-------------------------------------------------------------------
Old:
----
statsmodels-0.8.0.tar.gz
New:
----
statsmodels-0.10.2.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-statsmodels.spec ++++++
--- /var/tmp/diff_new_pack.KDnvDL/_old 2020-03-09 18:11:23.525198834 +0100
+++ /var/tmp/diff_new_pack.KDnvDL/_new 2020-03-09 18:11:23.545198863 +0100
@@ -1,7 +1,7 @@
#
# spec file for package python-statsmodels
#
-# Copyright (c) 2017 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -12,40 +12,37 @@
# 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/
#
-%bcond_without tests
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-statsmodels
-Version: 0.8.0
+Version: 0.10.2
Release: 0
Summary: A Python module that allows users to explore data
License: BSD-3-Clause
Group: Development/Libraries/Python
-Url: http://statsmodels.sourceforge.net/
+URL: http://statsmodels.sourceforge.net/
Source:
https://files.pythonhosted.org/packages/source/s/statsmodels/statsmodels-%{version}.tar.gz
-BuildRequires: fdupes
-BuildRequires: gcc-fortran
-BuildRequires: fdupes
-BuildRequires: python-rpm-macros
BuildRequires: %{python_module devel}
-BuildRequires: %{python_module setuptools >= 0.6}
BuildRequires: %{python_module matplotlib >= 1.0.0}
BuildRequires: %{python_module numpy-devel >= 1.7.0}
BuildRequires: %{python_module pandas >= 0.7.1}
BuildRequires: %{python_module patsy >= 0.3.0}
BuildRequires: %{python_module scipy >= 0.9.0}
-%if %{with tests}
-BuildRequires: %{python_module nose}
-%endif
+BuildRequires: %{python_module setuptools >= 0.6}
+BuildRequires: fdupes
+BuildRequires: gcc-fortran
+BuildRequires: python-rpm-macros
Requires: python-numpy >= 1.7.0
Requires: python-pandas >= 0.7.1
Requires: python-patsy >= 0.3.0
Requires: python-scipy >= 0.9.0
Recommends: python-matplotlib >= 1.0.0
-BuildRoot: %{_tmppath}/%{name}-%{version}-build
+# SECTION test requirements
+BuildRequires: %{python_module pytest}
+# /SECTION
%python_subpackages
%description
@@ -59,16 +56,25 @@
%prep
%setup -q -n statsmodels-%{version}
+rm -rf statsmodels/.pytest_cache
+find . -type f -name "*.py" -exec sed -i 's/\r$//' {} \;
find statsmodels -type f -name "*.py" -exec sed -i "/#! \/usr\/bin\/env
python/d" {} \;
find statsmodels -type f -name "*.py" -exec sed -i "/#!\/usr\/bin\/env
python/d" {} \;
find statsmodels -type f -name "*.py" -exec sed -i "/#! \/usr\/bin\/env
python3/d" {} \;
find statsmodels -type f -name "*.py" -exec sed -i "/#!\/usr\/bin\/env
python3/d" {} \;
-find . -type f -name "*.py" -exec sed -i 's/\r$//' {} \;
find . -type f -name "*.ipynb" -exec sed -i 's/\r$//' {} \;
sed -i 's/\r$//' COPYRIGHTS.txt
sed -i 's/\r$//' LICENSE.txt
sed -i 's/\r$//' README.rst
sed -i 's/\r$//' README_l1.txt
+sed -i 's/\r$//'
statsmodels/tsa/statespace/tests/results/results_wpi1_ar3_stata.csv
+sed -i 's/\r$//' statsmodels/tsa/regime_switching/tests/results/mar_filardo.csv
+sed -i 's/\r$//'
statsmodels/tsa/statespace/tests/results/results_wpi1_ar3_stata.csv
+sed -i 's/\r$//' statsmodels/tsa/regime_switching/tests/results/mar_filardo.csv
+chmod a-x COPYRIGHTS.txt
+chmod a-x LICENSE.txt
+chmod a-x README.rst
+chmod a-x README_l1.txt
%build
export CFLAGS="%{optflags} -fno-strict-aliasing"
@@ -80,19 +86,25 @@
# Remove unwanted setup files
%python_expand find %{buildroot}%{$python_sitearch} -name 'setup.py*' -exec rm
{} \;
-
-# Fix python-bytecode-inconsistent-mtime
-%if %have_python2
-%py_compile
%{buildroot}%{python2_sitearch}/statsmodels/tsa/vector_ar/tests/results/
-%endif
-%if %have_python3
-%py3_compile
%{buildroot}%{python3_sitearch}/statsmodels/tsa/vector_ar/tests/results/
+%python_expand find %{buildroot}%{$python_sitearch} -type f -exec chmod a-x {}
\;
+rm -f %{buildroot}%{_prefix}/LICENSE.txt
+rm -f %{buildroot}%{_prefix}/setup.cfg
+
+%ifnarch ppc64le
+%check
+export PYTHONDONTWRITEBYTECODE=1 # do not write unreproducible .pyc files
+mv statsmodels statsmodels_temp
+rm -rf build _build.*
+%{python_expand export PYTHONPATH=%{buildroot}%{$python_sitearch}
+pytest-%{$python_bin_suffix} -p no:cacheprovider
%{buildroot}%{$python_sitearch}/statsmodels/
+}
+mv statsmodels_temp statsmodels
%endif
%files %{python_files}
-%defattr(-,root,root)
-%doc COPYRIGHTS.txt LICENSE.txt README.rst README_l1.txt
+%doc README.rst README_l1.txt
%doc examples/
+%license COPYRIGHTS.txt LICENSE.txt
%{python_sitearch}/statsmodels/
%{python_sitearch}/statsmodels-%{version}-py*.egg-info
++++++ statsmodels-0.8.0.tar.gz -> statsmodels-0.10.2.tar.gz ++++++
/work/SRC/openSUSE:Leap:15.2/python-statsmodels/statsmodels-0.8.0.tar.gz
/work/SRC/openSUSE:Leap:15.2/.python-statsmodels.new.26092/statsmodels-0.10.2.tar.gz
differ: char 5, line 1