Skip to content

Commit 3b993e4

Browse files
committed
updated to 2.8version after merging pull request that implements save_to_file in linux
1 parent 9b7a9dd commit 3b993e4

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

makefile

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
clean:
2+
rm -rf dist/
3+
rm -rf build/
4+
build:
5+
pip3 install wheel
6+
python3 setup.py bdist_wheel
7+
upload:
8+
pip3 install twine
9+
python3 -m twine upload dist/*.whl

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
setup(
3131
name='pyttsx3',
3232
packages=['pyttsx3', 'pyttsx3.drivers'],
33-
version='2.71',
33+
version='2.8',
3434
description='Text to Speech (TTS) library for Python 2 and 3. Works without internet connection or delay. Supports multiple TTS engines, including Sapi5, nsss, and espeak.',
3535
long_description=long_description,
3636
summary='Offline Text to Speech library with multi-engine support',

0 commit comments

Comments
 (0)