Accepting request 749756 from home:TheBlackCat:branches:devel:languages:python:numeric

Update to version 0.7.1

OBS-URL: https://build.opensuse.org/request/show/749756
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-librosa?expand=0&rev=9
This commit is contained in:
Todd R
2019-11-19 20:54:17 +00:00
committed by Git OBS Bridge
parent 59a6825488
commit ea88b75834
4 changed files with 42 additions and 7 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:cca58a2d9a47e35be63a3ce36482d241453bfe9b14bde2005430f969bd7d013a
size 1595588

View File

@@ -1,3 +1,39 @@
-------------------------------------------------------------------
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,12 +18,11 @@
%{?!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
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
@@ -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}