Skip to content
This repository was archived by the owner on Apr 11, 2025. It is now read-only.

Commit 9c61a71

Browse files
authored
removed python 3.7 from workflow, readme, and setup (#832)
1 parent 6ef7ca8 commit 9c61a71

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

.github/workflows/python-demos.yml

Lines changed: 1 addition & 1 deletion
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.7', '3.8', '3.9', '3.10', '3.11']
29+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
3030
include:
3131
- os: ubuntu-latest
3232
platform: linux

.github/workflows/python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
strategy:
3535
matrix:
3636
os: [ubuntu-latest, windows-latest, macos-latest]
37-
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
37+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
3838

3939
steps:
4040
- uses: actions/checkout@v3

demo/python/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ similar to Alexa and Google. But it entirely runs 100% on-device. Picovoice is
1919

2020
## Compatibility
2121

22-
* Python 3.7+
22+
* Python 3.8+
2323
* Runs on Linux (x86_64), macOS (x86_64, arm64), Windows (x86_64), Raspberry Pi (all variants), NVIDIA Jetson (Nano), and BeagleBone.
2424

2525
## Installation

demo/python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,6 @@
6363
'picovoice_demo_mic=picovoicedemo.picovoice_demo_mic:main',
6464
],
6565
),
66-
python_requires='>=3.7',
66+
python_requires='>=3.8',
6767
keywords="wake word, voice control, speech recognition, voice recognition, natural language understanding",
6868
)

demo/respeaker/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,6 @@
5353
'picovoice_respeaker_demo=pvrespeakerdemo.picovoice_demo:main',
5454
],
5555
),
56-
python_requires='>=3.5',
56+
python_requires='>=3.8',
5757
keywords="wake word, voice control, speech recognition, voice recognition, natural language understanding",
5858
)

sdk/python/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ similar to Alexa and Google. But it entirely runs 100% on-device. Picovoice is
1414

1515
## Compatibility
1616

17-
* Python 3.7+
17+
* Python 3.8+
1818
* Runs on Linux (x86_64), macOS (x86_64, arm64), Windows (x86_64), Raspberry Pi (all variants), NVIDIA Jetson (Nano), and BeagleBone.
1919

2020
## Installation

sdk/python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,6 @@
5151
"Programming Language :: Python :: 3",
5252
"Topic :: Multimedia :: Sound/Audio :: Speech"
5353
],
54-
python_requires='>=3.7',
54+
python_requires='>=3.8',
5555
keywords="wake word, voice control, speech recognition, voice recognition, natural language understanding",
5656
)

0 commit comments

Comments
 (0)