numpy.bool - Remove broken test test_softmax OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-Theano?expand=0&rev=26
140 lines
4.5 KiB
RPMSpec
140 lines
4.5 KiB
RPMSpec
#
|
||
# spec file
|
||
#
|
||
# Copyright (c) 2023 SUSE LLC
|
||
#
|
||
# 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 https://bugs.opensuse.org/
|
||
#
|
||
|
||
|
||
%global flavor @BUILD_FLAVOR@%{nil}
|
||
%if "%{flavor}" == "test"
|
||
%define psuffix -test
|
||
%bcond_without test
|
||
%else
|
||
%define psuffix %{nil}
|
||
%bcond_with test
|
||
%endif
|
||
|
||
%define skip_python36 1
|
||
Name: python-Theano%{psuffix}
|
||
Version: 1.0.5
|
||
Release: 0
|
||
Summary: A scientific python library
|
||
License: BSD-3-Clause
|
||
Group: Development/Libraries/Python
|
||
URL: https://github.com/Theano/Theano
|
||
Source: https://files.pythonhosted.org/packages/source/T/Theano/Theano-%{version}.tar.gz
|
||
Source1: python-Theano.rpmlintrc
|
||
# PATCH-FIX-UPSTREAM remove_warnings.patch gh#Theano/Theano#6764 mcepl@suse.com
|
||
# Remove various deprecations
|
||
Patch0: remove_warnings.patch
|
||
# PATCH-FEATURE-UPSTREAM remove_nose.patch gh#Theano/Theano#6764 mcepl@suse.com
|
||
# port the test suite from nose to pytest
|
||
Patch1: remove_nose.patch
|
||
# PATCH-FIX-OPENSUSE numpy-124.patch
|
||
Patch2: numpy-124.patch
|
||
BuildRequires: %{python_module devel}
|
||
BuildRequires: %{python_module setuptools}
|
||
BuildRequires: c++_compiler
|
||
BuildRequires: fdupes
|
||
BuildRequires: python-rpm-macros
|
||
Requires: c++_compiler
|
||
Requires: python-devel
|
||
Requires: python-numpy >= 1.9.1
|
||
Requires: python-numpy-devel >= 1.9.1
|
||
Requires: python-scipy >= 0.14
|
||
Requires: python-six >= 1.9.0
|
||
Requires(post): update-alternatives
|
||
Requires(postun):update-alternatives
|
||
# The tests are compiling and are arch specific
|
||
%if !%{with test}
|
||
BuildArch: noarch
|
||
%endif
|
||
%if %{with test}
|
||
BuildRequires: %{python_module numpy >= 1.9.1}
|
||
BuildRequires: %{python_module numpy-devel}
|
||
BuildRequires: %{python_module parameterized}
|
||
BuildRequires: %{python_module pytest}
|
||
BuildRequires: %{python_module scipy >= 0.14}
|
||
BuildRequires: %{python_module six >= 1.9.0}
|
||
%endif
|
||
%python_subpackages
|
||
|
||
%description
|
||
Theano is a Python library that allows you to define, optimize, and
|
||
evaluate mathematical expressions involving multi-dimensional arrays.
|
||
|
||
Theano features:
|
||
* tight integration with numpy - Use numpy.ndarray in Theano-compiled
|
||
functions.
|
||
* transparent use of a GPU
|
||
* symbolic differentiation - Let Theano do your derivatives.
|
||
* speed and stability optimizations – Get the right answer for log(1+x)
|
||
even when x is really tiny.
|
||
* dynamic C code generation - Evaluate expressions faster.
|
||
* extensive unit-testing and self-verification – Detect and diagnose
|
||
many types of mistake.
|
||
|
||
%prep
|
||
%autosetup -p1 -n Theano-%{version}
|
||
|
||
for script in theano/gpuarray/tests/check_dnn_conv.py \
|
||
theano/misc/buildbot_filter.py theano/gpuarray/tests/check_dnn_conv.py \
|
||
theano/misc/check_*.py theano/tests/run_tests_in_batch.py
|
||
do
|
||
sed -i -e '1s@/usr/bin/env python@/usr/bin/python@' "$script"
|
||
done
|
||
|
||
%build
|
||
%python_build
|
||
|
||
%install
|
||
%if !%{with test}
|
||
%python_install
|
||
%python_clone -a %{buildroot}%{_bindir}/theano-cache
|
||
|
||
# remove binaries and stuff thats not supposed to end up on system
|
||
%python_expand rm -r %{buildroot}%{$python_sitelib}/bin
|
||
# Other pkgs use theano tests as a basis (see Keras)
|
||
#%%python_expand rm -r %{buildroot}%{$python_sitelib}/theano/tests
|
||
#%%python_expand rm -r %{buildroot}%{$python_sitelib}/theano/*/tests
|
||
|
||
# replace duplicate .pyo/.pyc with hardlinks
|
||
%python_expand %fdupes %{buildroot}%{_defaultdocdir}/%{name}
|
||
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
||
%endif
|
||
|
||
%check
|
||
%if %{with test}
|
||
# https://github.com/Theano/Theano/issues/6719
|
||
rm theano/tensor/tests/test_var.py
|
||
%pytest -k 'not (test_scan_err1 or test_remove0 or test_csm_unsorted or test_good or test_vector_arguments or test_vector_arguments or test_softmax)' theano/tests
|
||
%endif
|
||
|
||
%if !%{with test}
|
||
%post
|
||
%python_install_alternative theano-cache
|
||
|
||
%postun
|
||
%python_uninstall_alternative theano-cache
|
||
|
||
%files %{python_files}
|
||
%doc DESCRIPTION.txt EMAIL.txt HISTORY.txt NEWS.txt README.rst
|
||
%license doc/LICENSE.txt
|
||
%python_alternative %{_bindir}/theano-cache
|
||
%{python_sitelib}/theano
|
||
%{python_sitelib}/Theano-%{version}-*.egg-info
|
||
%endif
|
||
|
||
%changelog
|