Skip to content

Commit

Permalink
after release
Browse files Browse the repository at this point in the history
  • Loading branch information
bejager committed May 3, 2024
1 parent 96c088f commit 4717268
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 26 deletions.
18 changes: 0 additions & 18 deletions .github/workflows/python-demo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ jobs:
install_dep: sudo apt install libportaudio2
- os: windows-latest
- os: macos-latest
install_dep: brew uninstall portaudio && brew install portaudio --HEAD

steps:
- uses: actions/checkout@v3
Expand All @@ -45,15 +44,6 @@ jobs:
- name: Pre-build dependencies
run: python3 -m pip install --upgrade pip

# TODO: remove after release
- name: Build dependencies
run: |
python3 -m pip install -U pip setuptools
pip install wheel
cd ../../binding/python
python3 setup.py sdist bdist_wheel
python3 -m pip install dist/pvorca-0.1.4-py3-none-any.whl
- name: Install dependencies
run: |
${{matrix.install_dep}}
Expand Down Expand Up @@ -82,14 +72,6 @@ jobs:
steps:
- uses: actions/checkout@v3

# TODO: remove after release
- name: Build dependencies
run: |
pip install wheel
cd ../../binding/python
python3 setup.py sdist bdist_wheel
python3 -m pip install --force-reinstall dist/pvorca-0.1.4-py3-none-any.whl
- name: Install dependencies
run: pip3 install -r requirements.txt

Expand Down
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -504,6 +504,14 @@ For more details, see the [Android SDK](./binding/android/README.md).

## Releases

### v0.2.0 - May 3rd, 2024

- Support for streaming synthesis
- Reduced model size
- Improved performance
- Support for word alignments
- Improved naturalness and pronunciations

### v0.1.0 - January 24th, 2024

- Beta release
Expand Down
6 changes: 3 additions & 3 deletions binding/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,10 @@

setuptools.setup(
name="pvorca",
version="0.1.4",
version="0.2.0",
author="Picovoice",
author_email="[email protected]",
description="Orca Text-to-Speech Engine.",
description="Orca Streaming Text-to-Speech Engine",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Picovoice/orca",
Expand All @@ -67,5 +67,5 @@
"Topic :: Multimedia :: Sound/Audio :: Speech",
],
python_requires='>=3.8',
keywords="Text-to-Speech, TTS, Speech Synthesis, Voice Generation, Speech Engine",
keywords="Streaming Text-to-Speech, TTS, Speech Synthesis, Voice Generation, Speech Engine",
)
2 changes: 1 addition & 1 deletion demo/python/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
numpy>=1.24.0
pvorca==0.1.4
pvorca==0.2.0
sounddevice==0.4.6
tiktoken==0.6.0
8 changes: 4 additions & 4 deletions demo/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@

setuptools.setup(
name="pvorcademo",
version="0.1.3",
version="0.2.0",
author="Picovoice",
author_email="[email protected]",
description="Orca Text-to-Speech Engine demos",
description="Orca Streaming Text-to-Speech Engine demos",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Picovoice/orca",
packages=["pvorcademo"],
install_requires=["numpy>=1.24.0", "sounddevice==0.4.6", "tiktoken==0.6.0"],
install_requires=["numpy>=1.24.0", "pvorca==0.2.0", "sounddevice==0.4.6", "tiktoken==0.6.0"],
include_package_data=True,
classifiers=[
"Development Status :: 4 - Beta",
Expand All @@ -51,5 +51,5 @@
],
),
python_requires=">=3.8",
keywords="Text-to-Speech, TTS, Speech Synthesis, Voice Generation, Speech Engine",
keywords="Streaming Text-to-Speech, TTS, Speech Synthesis, Voice Generation, Speech Engine",
)

0 comments on commit 4717268

Please sign in to comment.