Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added py13 support, updated readme #405

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: ["3.8", "3.10", "3.11"]
python-version: ["3.8", "3.10", "3.11", "3.12"]
channel-priority: [strict]
envfile: [".github/environment.yml"]
include:
- python-version: "3.12"
- python-version: "3.13"
os: macos-latest
- python-version: "3.12"
- python-version: "3.13"
os: windows-latest
- python-version: "3.12"
- python-version: "3.13"
os: ubuntu-latest
channel-priority: flexible
- os: ubuntu-latest
Expand Down
12 changes: 12 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,8 +1,19 @@
.. image:: https://anaconda.org/conda-forge/mir_eval/badges/version.svg
:target: https://anaconda.org/conda-forge/mir_eval

.. image:: https://img.shields.io/pypi/v/mir_eval.svg
:target: https://pypi.python.org/pypi/mir_eval

.. image:: https://github.com/mir-evaluation/mir_eval/actions/workflows/test.yml/badge.svg
:target: https://github.com/mir-evaluation/mir_eval/actions/workflows/test.yml

.. image:: https://codecov.io/gh/mir-evaluation/mir_eval/graph/badge.svg?token=OzRL3aW7TX
:target: https://codecov.io/gh/mir-evaluation/mir_eval

.. image:: https://img.shields.io/pypi/l/mir_eval.svg
:target: https://github.com/mir-evaluation/mir_eval/blob/main/LICENSE.txt


mir_eval
========

Expand All @@ -13,6 +24,7 @@ Documentation, including installation and usage information: https://mir-evaluat
Dependencies:

* `Scipy/Numpy <http://www.scipy.org/>`_
* `decorator <https://github.com/micheles/decorator>`_

If you use mir_eval in a research project, please cite the following paper:

Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ classifiers =
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13


[options]
Expand Down
Loading