From af94f17627161c94324df0e4dc8797f1976385b9 Mon Sep 17 00:00:00 2001 From: Hagen Wierstorf Date: Mon, 16 Dec 2024 13:35:48 +0100 Subject: [PATCH 1/3] Add support for Python 3.12 --- .github/workflows/test.yml | 2 +- pyproject.toml | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d5e3f67..da47325 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,7 +13,7 @@ jobs: strategy: matrix: os: [ ubuntu-latest, windows-latest, macos-latest ] - python-version: [ '3.9', '3.10', '3.11' ] + python-version: [ '3.9', '3.10', '3.11', '3.12' ] steps: - uses: actions/checkout@v3 diff --git a/pyproject.toml b/pyproject.toml index ddeeffe..11097e0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -28,12 +28,13 @@ classifiers = [ 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', + 'Programming Language :: Python :: 3.12', 'Topic :: Scientific/Engineering', ] requires-python = '>=3.9' dependencies = [ - 'audobject >=0.6.1', - 'audinterface >=0.7.0', + 'audobject >=0.7.11', + 'audinterface >=1.2.3', ] # Get version dynamically from git # (needs setuptools_scm tools config below) From 10efef6bdee9cbd4bcc22f0b1d7030246d1fe81f Mon Sep 17 00:00:00 2001 From: Hagen Wierstorf Date: Mon, 16 Dec 2024 14:03:55 +0100 Subject: [PATCH 2/3] Revert update of dependencies --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 11097e0..514a841 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -33,8 +33,8 @@ classifiers = [ ] requires-python = '>=3.9' dependencies = [ - 'audobject >=0.7.11', - 'audinterface >=1.2.3', + 'audobject >=0.6.1', + 'audinterface >=0.7.11', ] # Get version dynamically from git # (needs setuptools_scm tools config below) From 741633164f67ffb6d01a4e4cd8db6a8e09ccd698 Mon Sep 17 00:00:00 2001 From: Hagen Wierstorf Date: Mon, 16 Dec 2024 14:05:08 +0100 Subject: [PATCH 3/3] Fix typo --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 514a841..048165e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -34,7 +34,7 @@ classifiers = [ requires-python = '>=3.9' dependencies = [ 'audobject >=0.6.1', - 'audinterface >=0.7.11', + 'audinterface >=0.7.0', ] # Get version dynamically from git # (needs setuptools_scm tools config below)