Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
Pouya Rostam committed Jan 30, 2024
1 parent 4a5694c commit c0310a2
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 12 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/python-demos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:

strategy:
matrix:
machine: [rpi2, rpi3-32, rpi3-64, rpi4-32, rpi4-64, jetson, beaglebone]
machine: [rpi2, rpi3-32, rpi3-64, rpi4-32, rpi4-64, rpi5-64, jetson, beaglebone]
include:
- machine: rpi2
platform: raspberry-pi
Expand All @@ -77,6 +77,8 @@ jobs:
platform: raspberry-pi
- machine: rpi4-64
platform: raspberry-pi
- machine: rpi5-64
platform: raspberry-pi
- machine: jetson
platform: jetson
- machine: beaglebone
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:

strategy:
matrix:
machine: [rpi2, rpi3-32, rpi3-64, rpi4-32, rpi4-64, jetson, beaglebone]
machine: [rpi2, rpi3-32, rpi3-64, rpi4-32, rpi4-64, rpi5-64, jetson, beaglebone]

steps:
- uses: actions/checkout@v3
Expand Down
4 changes: 2 additions & 2 deletions demo/python/requirements.txt
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
8 changes: 4 additions & 4 deletions demo/python/setup.py
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.
Expand Down Expand Up @@ -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",
Expand All @@ -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",
)
4 changes: 2 additions & 2 deletions sdk/python/requirements.txt
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
4 changes: 2 additions & 2 deletions sdk/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit c0310a2

Please sign in to comment.