Skip to content

Commit 6fff965

Browse files
committed
Update python minimum version to 3.9
1 parent 30af671 commit 6fff965

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
@@ -26,7 +26,7 @@ jobs:
2626
strategy:
2727
matrix:
2828
os: [ubuntu-latest, windows-latest, macos-latest]
29-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
29+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
3030

3131
steps:
3232
- uses: actions/checkout@v3

.github/workflows/python.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
strategy:
3737
matrix:
3838
os: [ubuntu-latest, windows-latest, macos-latest]
39-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
39+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
4040

4141
steps:
4242
- uses: actions/checkout@v3

binding/python/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Leopard is an on-device speech-to-text engine. Leopard is:
1717

1818
## Compatibility
1919

20-
- Python 3.8+
20+
- Python 3.9+
2121
- Runs on Linux (x86_64), macOS (x86_64, arm64), Windows (x86_64, arm64), and Raspberry Pi (3, 4, 5).
2222

2323
## Installation

binding/python/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,6 @@
6565
"Programming Language :: Python :: 3",
6666
"Topic :: Multimedia :: Sound/Audio :: Speech"
6767
],
68-
python_requires='>=3.8',
68+
python_requires='>=3.9',
6969
keywords="Speech-to-Text, Speech Recognition, Voice Recognition, ASR, Automatic Speech Recognition",
7070
)

demo/python/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Leopard is an on-device speech-to-text engine. Leopard is:
1717

1818
## Compatibility
1919

20-
- Python 3.8+
20+
- Python 3.9+
2121
- Runs on Linux (x86_64), macOS (x86_64, arm64), Windows (x86_64, arm64), and Raspberry Pi (3, 4, 5).
2222

2323
## Installation

demo/python/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,6 @@
5252
'leopard_demo_mic=pvleoparddemo.leopard_demo_mic:main',
5353
],
5454
),
55-
python_requires='>=3.8',
55+
python_requires='>=3.9',
5656
keywords="Speech-to-Text, ASR, Speech Recognition, Voice Recognition, Automatic Speech Recognition",
5757
)

0 commit comments

Comments
 (0)