Skip to content

Commit d05d7b9

Browse files
feat: Add support for python 3.11 (#203)
* feat: Add support for python 3.11 chore: Update gapic-generator-python to v1.8.0 PiperOrigin-RevId: 500768693 Source-Link: googleapis/googleapis@190b612 Source-Link: googleapis/googleapis-gen@7bf29a4 Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiN2JmMjlhNDE0YjllY2FjMzE3MGYwYjY1YmRjMmE5NTcwNWMwZWYxYSJ9 * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * regenerate with rest Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com> Co-authored-by: Anthonios Partheniou <partheniou@google.com>
1 parent 3977fb7 commit d05d7b9

File tree

7 files changed

+13
-5
lines changed

7 files changed

+13
-5
lines changed

packages/google-cloud-data-qna/google/cloud/dataqna_v1alpha/services/auto_suggestion_service/async_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ def get_mtls_endpoint_and_cert_source(
204204
The API endpoint is determined in the following order:
205205
(1) if `client_options.api_endpoint` if provided, use the provided one.
206206
(2) if `GOOGLE_API_USE_CLIENT_CERTIFICATE` environment variable is "always", use the
207-
default mTLS endpoint; if the environment variabel is "never", use the default API
207+
default mTLS endpoint; if the environment variable is "never", use the default API
208208
endpoint; otherwise if client cert source exists, use the default mTLS endpoint, otherwise
209209
use the default API endpoint.
210210

packages/google-cloud-data-qna/google/cloud/dataqna_v1alpha/services/auto_suggestion_service/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ def get_mtls_endpoint_and_cert_source(
340340
The API endpoint is determined in the following order:
341341
(1) if `client_options.api_endpoint` if provided, use the provided one.
342342
(2) if `GOOGLE_API_USE_CLIENT_CERTIFICATE` environment variable is "always", use the
343-
default mTLS endpoint; if the environment variabel is "never", use the default API
343+
default mTLS endpoint; if the environment variable is "never", use the default API
344344
endpoint; otherwise if client cert source exists, use the default mTLS endpoint, otherwise
345345
use the default API endpoint.
346346

packages/google-cloud-data-qna/google/cloud/dataqna_v1alpha/services/question_service/async_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ def get_mtls_endpoint_and_cert_source(
162162
The API endpoint is determined in the following order:
163163
(1) if `client_options.api_endpoint` if provided, use the provided one.
164164
(2) if `GOOGLE_API_USE_CLIENT_CERTIFICATE` environment variable is "always", use the
165-
default mTLS endpoint; if the environment variabel is "never", use the default API
165+
default mTLS endpoint; if the environment variable is "never", use the default API
166166
endpoint; otherwise if client cert source exists, use the default mTLS endpoint, otherwise
167167
use the default API endpoint.
168168

packages/google-cloud-data-qna/google/cloud/dataqna_v1alpha/services/question_service/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@ def get_mtls_endpoint_and_cert_source(
338338
The API endpoint is determined in the following order:
339339
(1) if `client_options.api_endpoint` if provided, use the provided one.
340340
(2) if `GOOGLE_API_USE_CLIENT_CERTIFICATE` environment variable is "always", use the
341-
default mTLS endpoint; if the environment variabel is "never", use the default API
341+
default mTLS endpoint; if the environment variable is "never", use the default API
342342
endpoint; otherwise if client cert source exists, use the default mTLS endpoint, otherwise
343343
use the default API endpoint.
344344

packages/google-cloud-data-qna/samples/generated_samples/snippet_metadata_google.cloud.dataqna.v1alpha.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
],
99
"language": "PYTHON",
1010
"name": "google-cloud-data-qna",
11-
"version": "0.9.0"
11+
"version": "0.1.0"
1212
},
1313
"snippets": [
1414
{

packages/google-cloud-data-qna/setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838
dependencies = [
3939
"google-api-core[grpc] >= 1.34.0, <3.0.0dev,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,!=2.7.*,!=2.8.*,!=2.9.*,!=2.10.*",
4040
"proto-plus >= 1.22.0, <2.0.0dev",
41+
"proto-plus >= 1.22.2, <2.0.0dev; python_version>='3.11'",
4142
"protobuf>=3.19.5,<5.0.0dev,!=3.20.0,!=3.20.1,!=4.21.0,!=4.21.1,!=4.21.2,!=4.21.3,!=4.21.4,!=4.21.5",
4243
]
4344
url = "https://github.com/googleapis/python-data-qna"
@@ -77,6 +78,7 @@
7778
"Programming Language :: Python :: 3.8",
7879
"Programming Language :: Python :: 3.9",
7980
"Programming Language :: Python :: 3.10",
81+
"Programming Language :: Python :: 3.11",
8082
"Operating System :: OS Independent",
8183
"Topic :: Internet",
8284
],
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# -*- coding: utf-8 -*-
2+
# This constraints file is required for unit tests.
3+
# List all library dependencies and extras in this file.
4+
google-api-core
5+
proto-plus
6+
protobuf

0 commit comments

Comments
 (0)