Accepting request 627751 from devel:languages:python:numeric
OBS-URL: https://build.opensuse.org/request/show/627751 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-numexpr?expand=0&rev=8
This commit is contained in:
parent
750a1db9df
commit
298459f738
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f0bef9a3a5407fb8d6344cf91b658bef7c13ec8a8eb13f423822d9d2ca5af6ce
|
||||
size 91060
|
3
numexpr-2.6.6.tar.gz
Normal file
3
numexpr-2.6.6.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:97c1f7fa409439ae933494014cd41d43de84cfe6c98b7f93392f94d54de1b453
|
||||
size 92965
|
@ -1,3 +1,16 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Aug 6 20:04:09 UTC 2018 - toddrme2178@gmail.com
|
||||
|
||||
- Update to 2.6.6
|
||||
* Thanks to Mark Dickinson for a fix to the thread barrier that occassionally suffered from spurious wakeups on MacOSX.
|
||||
- Update to 2.6.5
|
||||
* The maximum thread count can now be set at import-time by setting the environment variable ‘NUMEXPR_MAX_THREADS’. The default number of max threads was lowered from 4096 (which was deemed excessive) to 64.
|
||||
* A number of imports were removed (pkg_resources) or made lazy (cpuinfo) in order to speed load-times for downstream packages (such as pandas, sympy, and tables). Import time has dropped from about 330 ms to 90 ms. Thanks to Jason Sachs for pointing out the source of the slow-down.
|
||||
* Thanks to Alvaro Lopez Ortega for updates to benchmarks to be compatible with Python 3.
|
||||
* Travis and AppVeyor now fail if the test module fails or errors.
|
||||
* Thanks to Mahdi Ben Jelloul for a patch that removed a bug where constants in where calls would raise a ValueError.
|
||||
* Fixed a bug whereby all-constant power operations would lead to infinite recursion.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Oct 2 21:57:06 UTC 2017 - jengelh@inai.de
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package python-numexpr
|
||||
#
|
||||
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -18,14 +18,13 @@
|
||||
|
||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||
Name: python-numexpr
|
||||
Version: 2.6.4
|
||||
Version: 2.6.6
|
||||
Release: 0
|
||||
Url: https://github.com/pydata/numexpr/
|
||||
Summary: Numerical expression evaluator for NumPy
|
||||
License: MIT
|
||||
Group: Development/Languages/Python
|
||||
Source: https://files.pythonhosted.org/packages/source/n/numexpr/numexpr-%{version}.tar.gz
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
BuildRequires: %{python_module devel}
|
||||
BuildRequires: %{python_module numpy-devel >= 1.6}
|
||||
BuildRequires: %{python_module setuptools}
|
||||
@ -33,6 +32,7 @@ BuildRequires: fdupes
|
||||
BuildRequires: gcc-c++
|
||||
BuildRequires: python-rpm-macros
|
||||
Requires: python-numpy >= 1.6
|
||||
|
||||
%python_subpackages
|
||||
|
||||
%description
|
||||
@ -55,8 +55,8 @@ export CFLAGS="%{optflags} -fno-strict-aliasing"
|
||||
%python_expand %fdupes %{buildroot}%{$python_sitearch}
|
||||
|
||||
%files %{python_files}
|
||||
%defattr(-,root,root,-)
|
||||
%doc ANNOUNCE.rst AUTHORS.txt LICENSE.txt README.rst RELEASE_NOTES.rst site.cfg.example
|
||||
%doc ANNOUNCE.rst AUTHORS.txt README.rst RELEASE_NOTES.rst site.cfg.example
|
||||
%license LICENSE.txt
|
||||
%{python_sitearch}/numexpr/
|
||||
%{python_sitearch}/numexpr-%{version}-py*.egg-info
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user