Skip to content

Commit 2d07d8e

Browse files
committed
Update python minimum version to 3.9
1 parent 292a95d commit 2d07d8e

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

.github/workflows/python-demos.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
strategy:
2929
matrix:
3030
os: [ubuntu-latest, windows-latest, macos-latest]
31-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
31+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
3232

3333
steps:
3434
- uses: actions/checkout@v3

.github/workflows/python.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
strategy:
4141
matrix:
4242
os: [ubuntu-latest, windows-latest, macos-latest]
43-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
43+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
4444

4545
steps:
4646
- uses: actions/checkout@v3

binding/python/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Koala is an on-device noise suppression engine. Koala is:
1515

1616
## Compatibility
1717

18-
- Python 3.8 or higher
18+
- Python 3.9 or higher
1919
- Runs on Linux (x86_64), macOS (x86_64, arm64), Windows (x86_64, arm64), and Raspberry Pi (3, 4, 5).
2020

2121
## Installation

binding/python/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,6 @@
5959
"Programming Language :: Python :: 3",
6060
"Topic :: Multimedia :: Sound/Audio :: Speech"
6161
],
62-
python_requires='>=3.8',
62+
python_requires='>=3.9',
6363
keywords="Noise Cancellation, Noise Suppression, Noise Removal, Speech Enhancement, Speech Denoising",
6464
)

demo/python/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Koala is an on-device noise suppression engine. Koala is:
1515

1616
## Compatibility
1717

18-
- Python 3.8+
18+
- Python 3.9+
1919
- Runs on Linux (x86_64), macOS (x86_64, arm64), Windows (x86_64, arm64), and Raspberry Pi (3, 4, 5).
2020

2121
## Installation

demo/python/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,6 @@
4848
'koala_demo_mic=pvkoalademo.koala_demo_mic:main',
4949
],
5050
),
51-
python_requires='>=3.8',
51+
python_requires='>=3.9',
5252
keywords="Noise Cancellation, Noise Suppression, Noise Removal, Speech Enhancement, Speech Denoising",
5353
)

0 commit comments

Comments
 (0)