Accepting request 750042 from devel:languages:python:numeric

OBS-URL: https://build.opensuse.org/request/show/750042
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-librosa?expand=0&rev=4
This commit is contained in:
Dominique Leuenberger 2019-11-21 11:59:36 +00:00 committed by Git OBS Bridge
commit 0376cf8b56
4 changed files with 48 additions and 8 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d2f6da0be9742d387f68512e03306e5a0093e766d43fa0f2139b6eb692477995
size 31237387

3
librosa-0.7.1.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:39c7895db36734f3f2bdc52b45b4a9978fa2b7d47ff683666ee3c7af560b5b85
size 31262618

View File

@ -1,3 +1,44 @@
-------------------------------------------------------------------
Thu Nov 21 04:36:07 UTC 2019 - Todd R <toddrme2178@gmail.com>
- Use github source
-------------------------------------------------------------------
Tue Nov 19 20:52:02 UTC 2019 - Todd R <toddrme2178@gmail.com>
- Update to version 0.7.1
+ New Features
* `util.frame` now supports multidimensional data. Includes a new helper function `util.stack` for contiguous concatenation.
* `core.griffinlim_cqt`: Phase retrieval from constant-Q magnitude spectra.
* Enhanced compatibility with HTK's MFCC implementation: `effects.preemphasis` and `lifter=` parameter in MFCC.
* `util.shear` utility for shear-transforming 2D arrays.
* `core.reassigned_spectrogram`: time-frequency reassigned spectrogram.
+ Bug fixes
* Added a missing parameter to `griffinlim_cqt`.
* Correct FFT normalization discrepancy in rms calculation.
* Corrected an error in automatic tuning correction for CQT.
* Fixed seeking behavior in `librosa.stream` when operating on file-handle inputs.
* Fixed a boundary condition check in full-sequence DTW.
+ Documentation
* Fixed a typo in `stream` documentation.
* Visualization of reassigned spectrograms.
* Improved documentation for `core.stft`.
* Expanded documentation of `feature.melspectrogram`.
+ Other changes
* Expose frame parameters in `onset` and `chroma_stft` functions.
* Removed warning filter reset, and changed the Python2 deprecation
warning to class `FutureWarning`.
* Fixed an upstream deprecation warning from `np.asscalar()`.
* Beat and tempo estimation now support prior distributions.
* `util.valid_audio` now enforces memory contiguity.
* Improved x-axis decoration types in `display.waveplot`.
* Ensure memory contiguity of audio buffers after resampling.
* Code-base audit for proper usage of `times_like`.
* Deprecated `core.ifgram` in favor of `reassigned_spectrogram`.
* Allow initial phase estimates for `griffinlim` methods.
* Accelerated `segment.lag_to_recurrence` and `segment.recurrence_to_lag`. Deprecated `util.roll_sparse`.
* `A440=` parameter has been deprecated across the library in favor of a standardized `tuning=` parameter.
-------------------------------------------------------------------
Thu Jul 25 20:34:49 UTC 2019 - Todd R <toddrme2178@gmail.com>

View File

@ -18,13 +18,12 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-librosa
Version: 0.7.0
Version: 0.7.1
Release: 0
Summary: Python module for audio and music processing
License: ISC
Group: Development/Languages/Python
URL: http://github.com/librosa/librosa
Source0: https://github.com/librosa/librosa/archive/%{version}.tar.gz#//librosa-%{version}.tar.gz
URL: https://github.com/librosa/librosa
Source0: https://github.com/librosa/librosa/archive/%{version}.tar.gz#/librosa-%{version}.tar.gz
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
@ -46,9 +45,9 @@ BuildRequires: %{python_module decorator >= 3.0.0}
BuildRequires: %{python_module joblib >= 0.12}
BuildRequires: %{python_module numba >= 0.38.0}
BuildRequires: %{python_module numpy >= 1.15.0}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module pytest-cov}
BuildRequires: %{python_module pytest-mpl}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module resampy >= 0.2.0}
BuildRequires: %{python_module scikit-learn >= 0.14.0}
BuildRequires: %{python_module scipy >= 1.0.0}