Skip to content

Commit 37f5b14

Browse files
authored
Merge pull request #607 from watson-developer-cloud/websocket-version
feat(Text to Speech): Synthesize using web socket
2 parents c27f3a5 + 91090f4 commit 37f5b14

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ service.synthesize_using_websocket('I like to pet dogs',
280280
* `python_dateutil` >= 2.5.3
281281
* [responses] for testing
282282
* Following for web sockets support in speech to text
283-
* `websocket-client` 0.52.0
283+
* `websocket-client` 0.48.0
284284

285285
## Contributing
286286

requirements-dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ Sphinx>=1.3.1
1717
bumpversion>=0.5.3
1818

1919
# Web sockets
20-
websocket-client==0.52.0
20+
websocket-client==0.48.0

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
requests>=2.0,<3.0
22
python_dateutil>=2.5.3
3-
websocket-client==0.52.0
3+
websocket-client==0.48.0

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def run_tests(self):
6464
version=__version__,
6565
description='Client library to use the IBM Watson Services',
6666
license='Apache 2.0',
67-
install_requires=['requests>=2.0, <3.0', 'python_dateutil>=2.5.3', 'websocket-client==0.52.0'],
67+
install_requires=['requests>=2.0, <3.0', 'python_dateutil>=2.5.3', 'websocket-client==0.48.0'],
6868
tests_require=['responses', 'pytest', 'python_dotenv', 'pytest-rerunfailures', 'tox'],
6969
cmdclass={'test': PyTest},
7070
author='Jeffrey Stylos',

0 commit comments

Comments
 (0)