-
Notifications
You must be signed in to change notification settings - Fork 512
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1214 from Picovoice/python-rpi5
Python release with RPI5 support
- Loading branch information
Showing
9 changed files
with
25 additions
and
12 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
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 |
---|---|---|
|
@@ -69,7 +69,7 @@ | |
|
||
setuptools.setup( | ||
name="pvporcupine", | ||
version="3.0.1", | ||
version="3.0.2", | ||
author="Picovoice", | ||
author_email="[email protected]", | ||
description="Porcupine wake word engine.", | ||
|
@@ -86,6 +86,6 @@ | |
"Programming Language :: Python :: 3", | ||
"Topic :: Multimedia :: Sound/Audio :: Speech" | ||
], | ||
python_requires='>=3.5', | ||
python_requires='>=3.7', | ||
keywords="wake word engine, hotword detection, keyword spotting, wake word detection, voice commands", | ||
) |
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 @@ | ||
pvporcupine==3.0.1 | ||
pvrecorder==1.2.1 | ||
pvporcupine==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 |
---|---|---|
|
@@ -28,15 +28,15 @@ | |
|
||
setuptools.setup( | ||
name="pvporcupinedemo", | ||
version="3.0.1", | ||
version="3.0.2", | ||
author="Picovoice", | ||
author_email="[email protected]", | ||
description="Porcupine wake word engine demos", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/Picovoice/porcupine", | ||
packages=["pvporcupinedemo"], | ||
install_requires=["pvporcupine==3.0.1", "pvrecorder==1.2.1"], | ||
install_requires=["pvporcupine==3.0.2", "pvrecorder==1.2.2"], | ||
include_package_data=True, | ||
classifiers=[ | ||
"Development Status :: 5 - Production/Stable", | ||
|
@@ -52,6 +52,6 @@ | |
'porcupine_demo_mic=pvporcupinedemo.porcupine_demo_mic:main', | ||
], | ||
), | ||
python_requires='>=3.5', | ||
python_requires='>=3.7', | ||
keywords="wake word engine, hotword detection, keyword spotting, wake word detection, voice commands", | ||
) |