Skip to content

Commit 9458174

Browse files
authored
prepping 0.8.1 release (#417)
1 parent 5209a70 commit 9458174

File tree

3 files changed

+20
-1
lines changed

3 files changed

+20
-1
lines changed

docs/changes.rst

+13
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,19 @@
11
Changes
22
=======
33

4+
v0.8.1
5+
------
6+
7+
- `#410`_: Fixed several errors with time-frequency sonification
8+
- `#412`_: Removed unused import of deprecated scipy submodule
9+
- `#416`_: `mir_eval.io` routines now support `pathlib.Path` (and generally `os.Pathlike`) inputs as well as strings or open file descriptors.
10+
- `#416`_: `mir_eval.io.load_wav` is deprecated and will be removed in v0.9.'
11+
12+
.. _#410: https://github.com/mir-evaluation/mir_eval/pull/410
13+
.. _#412: https://github.com/mir-evaluation/mir_eval/pull/412
14+
.. _#416: https://github.com/mir-evaluation/mir_eval/pull/416
15+
16+
417
v0.8
518
----
619

docs/index.rst

+6
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,12 @@ The simplest way to install **mir_eval** is via ``pip``:
1818
1919
python -m pip install mir_eval
2020
21+
If you use `conda` packages, **mir_eval** is available on conda-forge:
22+
23+
.. code-block:: console
24+
25+
conda install -c conda-forge mir_eval
26+
2127
Alternatively, you can install from source:
2228

2329
.. code-block:: console

mir_eval/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@
2020
from . import transcription_velocity
2121
from . import key
2222

23-
__version__ = "0.8.1dev"
23+
__version__ = "0.8.1"

0 commit comments

Comments
 (0)