commit python-Keras-Preprocessing for openSUSE:Factory

2020-05-29 Thread root
Hello community,

here is the log from the commit of package python-Keras-Preprocessing for 
openSUSE:Factory checked in at 2020-05-29 21:24:18

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


Package is "python-Keras-Preprocessing"

Fri May 29 21:24:18 2020 rev:3 rq:810154 version:1.1.0

Changes:

--- 
/work/SRC/openSUSE:Factory/python-Keras-Preprocessing/python-Keras-Preprocessing.changes
2020-03-07 21:41:08.724389915 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-Keras-Preprocessing.new.3606/python-Keras-Preprocessing.changes
  2020-05-29 21:39:07.530962145 +0200
@@ -1,0 +2,5 @@
+Fri May 29 09:00:23 UTC 2020 - Tomáš Chvátal 
+
+- Do not run doc tests as they require old TF
+
+---



Other differences:
--
++ python-Keras-Preprocessing.spec ++
--- /var/tmp/diff_new_pack.lwRU0o/_old  2020-05-29 21:39:08.054963705 +0200
+++ /var/tmp/diff_new_pack.lwRU0o/_new  2020-05-29 21:39:08.054963705 +0200
@@ -73,7 +73,7 @@
 
 %check
 %if %{with test}
-%pytest
+%pytest -k 'not test_doc'
 %endif
 
 %if !%{with test}




commit python-Keras-Preprocessing for openSUSE:Factory

2020-03-07 Thread root
Hello community,

here is the log from the commit of package python-Keras-Preprocessing for 
openSUSE:Factory checked in at 2020-03-07 21:41:03

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


Package is "python-Keras-Preprocessing"

Sat Mar  7 21:41:03 2020 rev:2 rq:779125 version:1.1.0

Changes:

--- 
/work/SRC/openSUSE:Factory/python-Keras-Preprocessing/python-Keras-Preprocessing.changes
2018-11-30 16:32:49.157329067 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-Keras-Preprocessing.new.26092/python-Keras-Preprocessing.changes
 2020-03-07 21:41:08.724389915 +0100
@@ -1,0 +2,17 @@
+Tue Feb 25 15:01:53 UTC 2020 - Tomáš Chvátal 
+
+- Add python-keras as a recommend only to not create cycle
+
+---
+Tue Feb 25 11:24:09 UTC 2020 - Tomáš Chvátal 
+
+- Match up exclude archs with tensorflow
+
+---
+Mon Feb 24 13:50:20 UTC 2020 - Tomáš Chvátal 
+
+- Update to 1.1.0:
+  * Various fixes for new keras and tensorflow
+- Switch to multibuild and enable tests
+
+---

Old:

  Keras_Preprocessing-1.0.5.tar.gz
  LICENSE

New:

  Keras_Preprocessing-1.1.0.tar.gz
  _multibuild



Other differences:
--
++ python-Keras-Preprocessing.spec ++
--- /var/tmp/diff_new_pack.nh5lrK/_old  2020-03-07 21:41:09.204390239 +0100
+++ /var/tmp/diff_new_pack.nh5lrK/_new  2020-03-07 21:41:09.208390241 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-Keras-Preprocessing
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,29 +17,39 @@
 
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
-Name:   python-Keras-Preprocessing
-Version:1.0.5
+%global flavor @BUILD_FLAVOR@%{nil}
+%if "%{flavor}" == "test"
+%define psuffix -test
+%bcond_without test
+%else
+%define psuffix %{nil}
+%bcond_with test
+%endif
+%define skip_python2 1
+Name:   python-Keras-Preprocessing%{psuffix}
+Version:1.1.0
 Release:0
 Summary:Data preprocessing and augmentation package for deep learning 
models
 License:MIT
-Group:  Development/Languages/Python
 URL:https://github.com/keras-team/keras-preprocessing
 Source0:
https://files.pythonhosted.org/packages/source/K/Keras_Preprocessing/Keras_Preprocessing-%{version}.tar.gz
-Source10:   
https://raw.githubusercontent.com/keras-team/keras-preprocessing/%{version}/LICENSE
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
 Requires:   python-numpy >= 1.9.1
 Requires:   python-six >= 1.9.0
-Recommends: python-scipy >= 0.14
-BuildArch:  noarch
-# SECTION test requirements
+# It won't work without it but we don't want a build loop in OBS
+Recommends: python-Keras
+# match up with tensorflow
+ExcludeArch:%{ix86}
+%if %{with test}
+BuildRequires:  %{python_module Keras}
+BuildRequires:  %{python_module Pillow}
 BuildRequires:  %{python_module numpy >= 1.9.1}
-BuildRequires:  %{python_module pytest-cov}
-BuildRequires:  %{python_module pytest-xdist}
+BuildRequires:  %{python_module pandas}
 BuildRequires:  %{python_module pytest}
 BuildRequires:  %{python_module six >= 1.9.0}
-# /SECTION
+%endif
 %python_subpackages
 
 %description
@@ -49,18 +59,28 @@
 
 %prep
 %setup -q -n Keras_Preprocessing-%{version}
-cp %{SOURCE10} .
+# do not add extra opts for pytest
+rm setup.cfg
 
 %build
 %python_build
 
 %install
+%if !%{with test}
 %python_install
 %python_expand %fdupes %{buildroot}%{$python_sitelib}
+%endif
 
+%check
+%if %{with test}
+%pytest
+%endif
+
+%if !%{with test}
 %files %{python_files}
 %doc README.md
 %license LICENSE
 %{python_sitelib}/*
+%endif
 
 %changelog

++ Keras_Preprocessing-1.0.5.tar.gz -> Keras_Preprocessing-1.1.0.tar.gz 
++
 7989 lines of diff (skipped)

++ _multibuild ++

  test