Skip to content
This repository was archived by the owner on Oct 19, 2023. It is now read-only.

Commit ce76c50

Browse files
committed
google-assistant-sdk: bump changelog
- google-assistant-library deprecation. - google-assistant-grpc non-commercial usage restriction. - s/API/Service/. - disable flaky tests. Bug: 136190339 Bug: 149183802 Change-Id: I0977e10ffdca9ba19a8ed4df091d002d78193657
1 parent 87e6eb0 commit ce76c50

File tree

6 files changed

+14
-20
lines changed

6 files changed

+14
-20
lines changed

google-assistant-grpc/CHANGELOG.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
Changelog
22
=========
33

4+
0.3.0
5+
-----
6+
- Update Google Assistant Service usage restriction: non-commercial use.
7+
8+
49
0.2.1
510
-----
611
- Update ``v1alpha2`` gRPC service definition:

google-assistant-grpc/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
setup(
2727
name='google-assistant-grpc',
28-
version='0.2.1',
28+
version='0.3.0',
2929
author='Google Assistant SDK team',
3030
author_email='[email protected]',
3131
description='Google Assistant API gRPC bindings',

google-assistant-sdk/CHANGELOG.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
Changelog
22
=========
33

4+
0.6.0
5+
-----
6+
- Deprecate Google Assistant Library.
7+
- Update Google Assistant Service usage restriction: non-commercial use.
8+
9+
410
0.5.1
511
-----
612
- Fix Python generator termination.

google-assistant-sdk/README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ google-oauthlib-tool
1818
~~~~~~~~~~~~~~~~~~~~
1919

2020
This tool creates test credentials to authorize devices to call the
21-
Google Assistant API when prototyping.
21+
Google Assistant Service when prototyping.
2222

2323
- Follow the steps to `configure the Actions Console project and the Google account <https://developers.google.com/assistant/sdk/guides/service/python/embed/config-dev-project-and-account>`_.
2424
- Follow the steps to `register a new device model and download the client secrets file <https://developers.google.com/assistant/sdk/guides/service/python/embed/register-device>`_.
@@ -119,7 +119,7 @@ This reference sample implements a simple but functional client for the `Google
119119

120120
- Try a device action query like "Turn <nickname / model product name> on".
121121

122-
- Run in verbose mode to see the gRPC communication with the Google Assistant API::
122+
- Run in verbose mode to see the gRPC communication with the Google Assistant Service::
123123

124124
googlesamples-assistant-pushtotalk --device-model-id 'my-device-model' --device-id 'my-device-identifier' -v
125125

-26.3 KB
Binary file not shown.

google-assistant-sdk/tests/test_endtoend.py

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -210,20 +210,3 @@ def test_endtoend_audiofileinput(device_model, device_instance):
210210
print(out)
211211
assert 'what time is it' in builtins.str(out).lower()
212212
assert os.path.getsize(audio_out_file) > 0
213-
214-
215-
def test_onoff_device_action(device_model, device_instance):
216-
temp_dir = tempfile.mkdtemp()
217-
audio_out_file = os.path.join(temp_dir, 'out.raw')
218-
out = subprocess.check_output(['python', '-m',
219-
'googlesamples.assistant.grpc.pushtotalk',
220-
'--verbose',
221-
'--project-id', PROJECT_ID,
222-
'--device-model-id', device_model,
223-
'--device-id', device_instance,
224-
'-i', 'tests/data/turnon.riff',
225-
'-o', audio_out_file],
226-
stderr=subprocess.STDOUT)
227-
print(out)
228-
assert 'turning device on' in builtins.str(out).lower()
229-
assert os.path.getsize(audio_out_file) > 0

0 commit comments

Comments
 (0)