-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Python release with RPI5 support (#775)
- Loading branch information
Showing
9 changed files
with
47 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
picovoice==3.0.1 | ||
pvrecorder==1.2.1 | ||
picovoice==3.0.2 | ||
pvrecorder==1.2.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# | ||
# Copyright 2020-2023 Picovoice Inc. | ||
# Copyright 2020-2024 Picovoice Inc. | ||
# | ||
# You may not use this file except in compliance with the license. A copy of the license is located in the "LICENSE" | ||
# file accompanying this source. | ||
|
@@ -39,15 +39,15 @@ | |
|
||
setuptools.setup( | ||
name="picovoicedemo", | ||
version="3.0.1", | ||
version="3.0.2", | ||
author="Picovoice Inc.", | ||
author_email="[email protected]", | ||
description="Picovoice demos.", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/Picovoice/picovoice", | ||
packages=["picovoicedemo"], | ||
install_requires=["picovoice==3.0.1", "pvrecorder==1.2.1"], | ||
install_requires=["picovoice==3.0.2", "pvrecorder==1.2.2"], | ||
include_package_data=True, | ||
classifiers=[ | ||
"Development Status :: 5 - Production/Stable", | ||
|
@@ -63,6 +63,6 @@ | |
'picovoice_demo_mic=picovoicedemo.picovoice_demo_mic:main', | ||
], | ||
), | ||
python_requires='>=3.5', | ||
python_requires='>=3.7', | ||
keywords="wake word, voice control, speech recognition, voice recognition, natural language understanding", | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
parameterized | ||
pvporcupine==3.0.1 | ||
pvrhino==3.0.1 | ||
pvporcupine==3.0.2 | ||
pvrhino==3.0.2 | ||
setuptools |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,15 +33,15 @@ | |
|
||
setuptools.setup( | ||
name="picovoice", | ||
version="3.0.1", | ||
version="3.0.2", | ||
author="Picovoice Inc.", | ||
author_email="[email protected]", | ||
description="Picovoice is an end-to-end platform for building voice products on your terms.", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/Picovoice/picovoice", | ||
packages=["picovoice"], | ||
install_requires=["pvporcupine==3.0.1", "pvrhino==3.0.1"], | ||
install_requires=["pvporcupine==3.0.2", "pvrhino==3.0.2"], | ||
include_package_data=True, | ||
classifiers=[ | ||
"Development Status :: 5 - Production/Stable", | ||
|
@@ -51,6 +51,6 @@ | |
"Programming Language :: Python :: 3", | ||
"Topic :: Multimedia :: Sound/Audio :: Speech" | ||
], | ||
python_requires='>=3.5', | ||
python_requires='>=3.7', | ||
keywords="wake word, voice control, speech recognition, voice recognition, natural language understanding", | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters