Accepting request 1186082 from devel:languages:python:numeric
Automatic submission by obs-autosubmit OBS-URL: https://build.opensuse.org/request/show/1186082 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-numba?expand=0&rev=48
This commit is contained in:
commit
b612f36ebc
BIN
numba-0.59.1.tar.gz
(Stored with Git LFS)
BIN
numba-0.59.1.tar.gz
(Stored with Git LFS)
Binary file not shown.
3
numba-0.60.0.tar.gz
Normal file
3
numba-0.60.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:5df6158e5584eece5fc83294b949fd30b9f1125df7708862205217e068aabf16
|
||||||
|
size 2702171
|
@ -1,3 +1,26 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jul 1 05:10:03 UTC 2024 - Steve Kowalik <steven.kowalik@suse.com>
|
||||||
|
|
||||||
|
- Update to 0.60.0:
|
||||||
|
* NumPy 2.0 Binary Support
|
||||||
|
* New Features
|
||||||
|
+ IEnhance guvectorize support in JIT code
|
||||||
|
+ IAdd experimental support for ufunc.at
|
||||||
|
+ IAdd float(<string literal>) ctor
|
||||||
|
+ IAdd support for math.log2.
|
||||||
|
+ IAdd math.nextafter support for nopython mode.
|
||||||
|
+ IAdd support for parfor binop reductions.
|
||||||
|
* Improvements
|
||||||
|
+ Expand isinstance() support for NumPy datetime types
|
||||||
|
+ Python 3.12 sys.monitoring support is added to Numba's dispatcher.
|
||||||
|
* NumPy Support
|
||||||
|
+ Added support for np.size()
|
||||||
|
* CUDA API Changes
|
||||||
|
+ Support for compilation to LTO-IR
|
||||||
|
+ Support math.log, math.log2 and math.log10 in CUDA
|
||||||
|
* Bug Fixes
|
||||||
|
+ Fix parfor variable hoisting analysis.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue May 28 09:30:26 UTC 2024 - Daniel Garcia <daniel.garcia@suse.com>
|
Tue May 28 09:30:26 UTC 2024 - Daniel Garcia <daniel.garcia@suse.com>
|
||||||
|
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
%define plainpython python
|
%define plainpython python
|
||||||
# upper bound is exclusive: min-numpy_ver <= numpy < max_numpy_ver
|
# upper bound is exclusive: min-numpy_ver <= numpy < max_numpy_ver
|
||||||
%define min_numpy_ver 1.22
|
%define min_numpy_ver 1.22
|
||||||
%define max_numpy_ver 1.27
|
%define max_numpy_ver 2.1
|
||||||
|
|
||||||
%{?sle15_python_module_pythons}
|
%{?sle15_python_module_pythons}
|
||||||
|
|
||||||
@ -55,7 +55,7 @@ ExcludeArch: s390x ppc64 %ix86 %arm
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
Name: python-numba%{?psuffix}
|
Name: python-numba%{?psuffix}
|
||||||
Version: 0.59.1
|
Version: 0.60.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: NumPy-aware optimizing compiler for Python using LLVM
|
Summary: NumPy-aware optimizing compiler for Python using LLVM
|
||||||
License: BSD-2-Clause
|
License: BSD-2-Clause
|
||||||
@ -73,7 +73,7 @@ BuildRequires: fdupes
|
|||||||
BuildRequires: gcc-c++
|
BuildRequires: gcc-c++
|
||||||
BuildRequires: python-rpm-macros
|
BuildRequires: python-rpm-macros
|
||||||
BuildRequires: (tbb-devel >= 2021)
|
BuildRequires: (tbb-devel >= 2021)
|
||||||
Requires: (python-llvmlite >= 0.42 with python-llvmlite < 0.43)
|
Requires: (python-llvmlite >= 0.43 with python-llvmlite < 0.44)
|
||||||
Requires: (python-numpy >= %{min_numpy_ver} with python-numpy < %{max_numpy_ver})
|
Requires: (python-numpy >= %{min_numpy_ver} with python-numpy < %{max_numpy_ver})
|
||||||
Requires(post): update-alternatives
|
Requires(post): update-alternatives
|
||||||
Requires(postun): update-alternatives
|
Requires(postun): update-alternatives
|
||||||
|
Loading…
Reference in New Issue
Block a user