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

replace Travis badge with GA badge #78

Merged
merged 3 commits into from
Jun 18, 2024
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10']
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']

steps:
- uses: actions/checkout@v2
Expand Down
18 changes: 10 additions & 8 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ nara_wpe
.. image:: https://readthedocs.org/projects/nara-wpe/badge/?version=latest
:target: http://nara-wpe.readthedocs.io/en/latest/
:alt: Documentation Status
.. image:: https://travis-ci.org/fgnt/nara_wpe.svg?branch=master
:target: https://travis-ci.org/fgnt/nara_wpe
:alt: Travis Status

.. image:: https://github.com/fgnt/nara_wpe/actions/workflows/tests.yml/badge.svg?branch=master
:target: https://github.com/fgnt/nara_wpe/actions/workflows/tests.yml
:alt: Tests

.. image:: https://img.shields.io/pypi/v/nara-wpe.svg
:target: https://pypi.org/project/nara-wpe/
:alt: PyPI
Expand All @@ -22,7 +22,6 @@ nara_wpe
:target: https://raw.githubusercontent.com/fgnt/nara_wpe/master/LICENSE
:alt: MIT License


Weighted Prediction Error for speech dereverberation
====================================================

Expand Down Expand Up @@ -94,6 +93,9 @@ Their result is, that the Nara-WPE implementation is as least as good as the NTT
Development history
====================

Since 2017-09-05 a TensorFlow implementation has been added to `nara_wpe`. It has been tested with a few test cases against the Numpy implementation.
Since 2017-09-05 a TensorFlow implementation has been added to `nara_wpe`.
It has been tested with a few test cases against the Numpy implementation.

The first version of the Numpy implementation was written in June 2017 while Lukas Drude and Kateřina Žmolíková resided in Nara, Japan. The aim was to have a publicly available implementation of Takuya Yoshioka's 2012 paper.
The first version of the Numpy implementation was written in June 2017 while
Lukas Drude and Kateřina Žmolíková resided in Nara, Japan. The aim was to have
a publicly available implementation of Takuya Yoshioka's 2012 paper.
7 changes: 6 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,12 @@

# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],

# What does your project relate to?
Expand Down
Loading