diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 23a0ef5..04e82c5 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', '3.12', '3.13' ] + python-version: [ '3.10', '3.11', '3.12', '3.13' ] steps: - uses: actions/checkout@v4 diff --git a/audinterface/core/feature.py b/audinterface/core/feature.py index f3357e3..a6cb34f 100644 --- a/audinterface/core/feature.py +++ b/audinterface/core/feature.py @@ -1,5 +1,3 @@ -from __future__ import annotations - from collections.abc import Callable from collections.abc import Sequence import errno diff --git a/audinterface/core/process.py b/audinterface/core/process.py index a6759bc..f8e9789 100644 --- a/audinterface/core/process.py +++ b/audinterface/core/process.py @@ -1,5 +1,3 @@ -from __future__ import annotations - from collections.abc import Callable from collections.abc import Sequence import errno diff --git a/audinterface/core/process_with_context.py b/audinterface/core/process_with_context.py index 38b6b94..ebc7fbe 100644 --- a/audinterface/core/process_with_context.py +++ b/audinterface/core/process_with_context.py @@ -1,5 +1,3 @@ -from __future__ import annotations - import collections from collections.abc import Callable from collections.abc import Sequence diff --git a/audinterface/core/segment.py b/audinterface/core/segment.py index d1c12b5..9579245 100644 --- a/audinterface/core/segment.py +++ b/audinterface/core/segment.py @@ -1,5 +1,3 @@ -from __future__ import annotations - from collections.abc import Callable from collections.abc import Sequence import errno diff --git a/audinterface/core/segment_with_feature.py b/audinterface/core/segment_with_feature.py index df49a2e..b770e38 100644 --- a/audinterface/core/segment_with_feature.py +++ b/audinterface/core/segment_with_feature.py @@ -1,5 +1,3 @@ -from __future__ import annotations - from collections.abc import Callable from collections.abc import Sequence import errno diff --git a/audinterface/core/utils.py b/audinterface/core/utils.py index 52fab07..5bcfa6a 100644 --- a/audinterface/core/utils.py +++ b/audinterface/core/utils.py @@ -1,5 +1,3 @@ -from __future__ import annotations - import collections from collections.abc import Sequence import os diff --git a/pyproject.toml b/pyproject.toml index 5701cab..f604bc3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,14 +24,13 @@ classifiers = [ 'Operating System :: OS Independent', 'Programming Language :: Python', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', 'Programming Language :: Python :: 3.12', 'Programming Language :: Python :: 3.13', 'Topic :: Scientific/Engineering', ] -requires-python = '>=3.9' +requires-python = '>=3.10' dependencies = [ 'audeer >=2.1.1', 'audformat >=1.0.1,<2.0.0',