diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 98f441b..ece5581 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -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 diff --git a/README.rst b/README.rst index 488af1b..dcb0af0 100644 --- a/README.rst +++ b/README.rst @@ -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 @@ -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 ==================================================== @@ -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. diff --git a/setup.py b/setup.py index 6975764..38c65ac 100644 --- a/setup.py +++ b/setup.py @@ -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?