Skip to content

Commit

Permalink
Merge pull request #607 from watson-developer-cloud/websocket-version
Browse files Browse the repository at this point in the history
feat(Text to Speech): Synthesize using web socket
  • Loading branch information
ehdsouza authored Nov 30, 2018
2 parents c27f3a5 + 91090f4 commit 37f5b14
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ service.synthesize_using_websocket('I like to pet dogs',
* `python_dateutil` >= 2.5.3
* [responses] for testing
* Following for web sockets support in speech to text
* `websocket-client` 0.52.0
* `websocket-client` 0.48.0

## Contributing

Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ Sphinx>=1.3.1
bumpversion>=0.5.3

# Web sockets
websocket-client==0.52.0
websocket-client==0.48.0
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
requests>=2.0,<3.0
python_dateutil>=2.5.3
websocket-client==0.52.0
websocket-client==0.48.0
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def run_tests(self):
version=__version__,
description='Client library to use the IBM Watson Services',
license='Apache 2.0',
install_requires=['requests>=2.0, <3.0', 'python_dateutil>=2.5.3', 'websocket-client==0.52.0'],
install_requires=['requests>=2.0, <3.0', 'python_dateutil>=2.5.3', 'websocket-client==0.48.0'],
tests_require=['responses', 'pytest', 'python_dotenv', 'pytest-rerunfailures', 'tox'],
cmdclass={'test': PyTest},
author='Jeffrey Stylos',
Expand Down

0 comments on commit 37f5b14

Please sign in to comment.