From 0ee0bc626b3db299f45bf337da1cbafd0701d5eb Mon Sep 17 00:00:00 2001 From: Hendrik Schreiber Date: Fri, 11 Oct 2024 22:29:14 +0200 Subject: [PATCH] TF 2.17.0 and Python 3.9. --- .github/workflows/python-package.yml | 2 +- .github/workflows/python-publish.yml | 2 +- CHANGES.rst | 2 +- README.rst | 4 ++-- requirements.txt | 9 ++++----- 5 files changed, 9 insertions(+), 10 deletions(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 1940f3a..95c0f94 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -21,7 +21,7 @@ jobs: runs-on: ubuntu-20.04 strategy: matrix: - python-version: [ 3.8 ] + python-version: [ 3.9, 3.10 , 3.11, 3.12 ] steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index 75b604b..8479ecc 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -23,7 +23,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v5 with: - python-version: '3.8' + python-version: '3.9' - name: Install dependencies run: | sudo apt-get install libsndfile1 diff --git a/CHANGES.rst b/CHANGES.rst index 7af60e1..9f04e34 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -3,7 +3,7 @@ Changes ======= 0.0.8: - - Moved to TensorFlow 2.4.1 and Python 3.8 + - Moved to TensorFlow 2.17.0 and Python 3.9 0.0.7: - Added DOIs to bibtex entries. diff --git a/README.rst b/README.rst index 741919c..8b364f3 100644 --- a/README.rst +++ b/README.rst @@ -47,7 +47,7 @@ For programmatic use via the Python API, please see `here <#programmatic-usage>` Installation ============ -In a clean Python 3.8 environment, simply run: +In a clean Python 3.9 environment, simply run: .. code-block:: console @@ -55,7 +55,7 @@ In a clean Python 3.8 environment, simply run: If you rather want to install from source, clone this repo and run -``setup.py install`` using Python 3.8: +``setup.py install`` using Python 3.9: .. code-block:: console diff --git a/requirements.txt b/requirements.txt index 26fb7ae..435afd3 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,6 @@ jams>=0.3.1 -librosa==0.9.2 +librosa>=0.9.0 matplotlib>=3.0.0 -scipy>=1.5.3 -setuptools>=59.6.0 -tensorflow==2.4.1 - +scipy>=1.10.0 +setuptools>=65.5.1 +tensorflow==2.17.0 \ No newline at end of file