-
Notifications
You must be signed in to change notification settings - Fork 89
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 (#674)
- Loading branch information
Showing
9 changed files
with
30 additions
and
15 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 |
---|---|---|
|
@@ -47,7 +47,7 @@ | |
|
||
setuptools.setup( | ||
name="pvrhino", | ||
version="3.0.1", | ||
version="3.0.2", | ||
author="Picovoice", | ||
author_email="[email protected]", | ||
description="Rhino Speech-to-Intent engine.", | ||
|
@@ -64,6 +64,6 @@ | |
"Programming Language :: Python :: 3", | ||
"Topic :: Multimedia :: Sound/Audio :: Speech" | ||
], | ||
python_requires='>=3.5', | ||
python_requires='>=3.7', | ||
keywords="Speech-to-Intent, voice commands, voice control, speech 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,2 +1,2 @@ | ||
pvrhino==3.0.1 | ||
pvrecorder==1.2.1 | ||
pvrhino==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="pvrhinodemo", | ||
version="3.0.1", | ||
version="3.0.2", | ||
author="Picovoice", | ||
author_email="[email protected]", | ||
description="Rhino Speech-to-Intent engine demos.", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/Picovoice/rhino", | ||
packages=["pvrhinodemo"], | ||
install_requires=["pvrhino==3.0.1", "pvrecorder==1.2.1"], | ||
install_requires=["pvrhino==3.0.2", "pvrecorder==1.2.2"], | ||
include_package_data=True, | ||
classifiers=[ | ||
"Development Status :: 5 - Production/Stable", | ||
|
@@ -52,6 +52,6 @@ | |
'rhino_demo_mic=pvrhinodemo.rhino_demo_mic:main', | ||
], | ||
), | ||
python_requires='>=3.5', | ||
python_requires='>=3.7', | ||
keywords="Speech-to-Intent, voice commands, voice control, speech recognition, natural language understanding" | ||
) |