Skip to content

Commit

Permalink
removed python 3.7 from workflow, readme, and setup (#832)
Browse files Browse the repository at this point in the history
  • Loading branch information
matt200-ok committed Jun 19, 2024
1 parent 6ef7ca8 commit 9c61a71
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-demos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
include:
- os: ubuntu-latest
platform: linux
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion demo/python/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ similar to Alexa and Google. But it entirely runs 100% on-device. Picovoice is

## Compatibility

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

## Installation
Expand Down
2 changes: 1 addition & 1 deletion demo/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,6 @@
'picovoice_demo_mic=picovoicedemo.picovoice_demo_mic:main',
],
),
python_requires='>=3.7',
python_requires='>=3.8',
keywords="wake word, voice control, speech recognition, voice recognition, natural language understanding",
)
2 changes: 1 addition & 1 deletion demo/respeaker/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,6 @@
'picovoice_respeaker_demo=pvrespeakerdemo.picovoice_demo:main',
],
),
python_requires='>=3.5',
python_requires='>=3.8',
keywords="wake word, voice control, speech recognition, voice recognition, natural language understanding",
)
2 changes: 1 addition & 1 deletion sdk/python/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ similar to Alexa and Google. But it entirely runs 100% on-device. Picovoice is

## Compatibility

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

## Installation
Expand Down
2 changes: 1 addition & 1 deletion sdk/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,6 @@
"Programming Language :: Python :: 3",
"Topic :: Multimedia :: Sound/Audio :: Speech"
],
python_requires='>=3.7',
python_requires='>=3.8',
keywords="wake word, voice control, speech recognition, voice recognition, natural language understanding",
)

0 comments on commit 9c61a71

Please sign in to comment.