Accepting request 357122 from devel:languages:python
1 OBS-URL: https://build.opensuse.org/request/show/357122 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-numexpr?expand=0&rev=4
This commit is contained in:
parent
1eff0ae095
commit
c71a3d34d1
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:3ae7191c89df40db6b0a8637a4dace7c5956bc910793a53225f985f3b443c722
|
|
||||||
size 85171
|
|
3
numexpr-2.4.6.tar.gz
Normal file
3
numexpr-2.4.6.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:052397670dc56d7845ff894cd7d858e4f115491ecd93bcc0eda5cb83990c5da3
|
||||||
|
size 87481
|
@ -1,3 +1,26 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Feb 1 11:39:24 UTC 2016 - toddrme2178@gmail.com
|
||||||
|
|
||||||
|
- update to version 2.4.6:
|
||||||
|
* Fixed some UserWarnings in Solaris (PR #189, Graham Jones).
|
||||||
|
* Better handling of MSVC defines. (#168, Francesc Alted).
|
||||||
|
- update to version 2.4.5:
|
||||||
|
* Undone a 'fix' for a harmless data race. (#185 Benedikt Reinartz,
|
||||||
|
Francesc Alted).
|
||||||
|
* Ignore NumPy warnings (overflow/underflow, divide by zero and
|
||||||
|
others) that only show up in Python3. Masking these warnings in
|
||||||
|
tests is fine because all the results are checked to be
|
||||||
|
valid. (#183, Francesc Alted).
|
||||||
|
- update to version 2.4.4:
|
||||||
|
* Honor OMP_NUM_THREADS as a fallback in case NUMEXPR_NUM_THREADS is
|
||||||
|
not set. Fixes #161. (PR #175, Stefan Erb).
|
||||||
|
* Added support for AppVeyor (PR #178 Andrea Bedini)
|
||||||
|
* Fix to allow numexpr to be imported after eventlet.monkey_patch(),
|
||||||
|
as suggested in #118 (PR #180 Ben Moran).
|
||||||
|
* Fix harmless data race that triggers false positives in
|
||||||
|
ThreadSanitizer. (PR #179, Clement Courbet).
|
||||||
|
* Fixed some string tests on Python 3 (PR #182, Antonio Valentino).
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu May 7 18:37:17 UTC 2015 - benoit.monin@gmx.fr
|
Thu May 7 18:37:17 UTC 2015 - benoit.monin@gmx.fr
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package python-numexpr
|
# spec file for package python-numexpr
|
||||||
#
|
#
|
||||||
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -16,15 +16,14 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
%define modname numexpr
|
Name: python-numexpr
|
||||||
Name: python-%{modname}
|
Version: 2.4.6
|
||||||
Version: 2.4.3
|
|
||||||
Release: 0
|
Release: 0
|
||||||
Url: https://github.com/pydata/numexpr/
|
Url: https://github.com/pydata/numexpr/
|
||||||
Summary: Fast numerical expression evaluator for NumPy
|
Summary: Fast numerical expression evaluator for NumPy
|
||||||
License: MIT
|
License: MIT
|
||||||
Group: Development/Languages/Python
|
Group: Development/Languages/Python
|
||||||
Source: http://pypi.python.org/packages/source/n/numexpr/%{modname}-%{version}.tar.gz
|
Source: http://pypi.python.org/packages/source/n/numexpr/numexpr-%{version}.tar.gz
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
BuildRequires: gcc-c++
|
BuildRequires: gcc-c++
|
||||||
BuildRequires: python-devel >= 2.5
|
BuildRequires: python-devel >= 2.5
|
||||||
@ -32,8 +31,6 @@ BuildRequires: python-numpy-devel >= 1.6
|
|||||||
Requires: python-numpy >= 1.6
|
Requires: python-numpy >= 1.6
|
||||||
%if 0%{?suse_version} <= 1110
|
%if 0%{?suse_version} <= 1110
|
||||||
%{!?python_sitearch: %global python_sitearch %(python -c "from distutils.sysconfig import get_python_lib; print(get_python_lib(1))")}
|
%{!?python_sitearch: %global python_sitearch %(python -c "from distutils.sysconfig import get_python_lib; print(get_python_lib(1))")}
|
||||||
%else
|
|
||||||
Requires: python(abi) >= %{py_ver}
|
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%description
|
%description
|
||||||
@ -42,7 +39,7 @@ expressions that operate on arrays (like "3*a+4*b") are accelerated
|
|||||||
and use less memory than doing the same calculation in Python.
|
and use less memory than doing the same calculation in Python.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n %{modname}-%{version}
|
%setup -q -n numexpr-%{version}
|
||||||
# remove unwanted shebang
|
# remove unwanted shebang
|
||||||
sed -i '/^#!/ d' numexpr/cpuinfo.py
|
sed -i '/^#!/ d' numexpr/cpuinfo.py
|
||||||
|
|
||||||
@ -55,7 +52,7 @@ python setup.py install --prefix=%{_prefix} --root=%{buildroot}
|
|||||||
%files
|
%files
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,-)
|
||||||
%doc ANNOUNCE.rst AUTHORS.txt LICENSE.txt README.rst RELEASE_NOTES.rst site.cfg.example
|
%doc ANNOUNCE.rst AUTHORS.txt LICENSE.txt README.rst RELEASE_NOTES.rst site.cfg.example
|
||||||
%{python_sitearch}/%{modname}/
|
%{python_sitearch}/numexpr/
|
||||||
%{python_sitearch}/%{modname}-%{version}-py%{py_ver}.egg-info
|
%{python_sitearch}/numexpr-%{version}-py*.egg-info
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Loading…
x
Reference in New Issue
Block a user