Skip to content

Commit 94f04dd

Browse files
committed
update google-auth min version to 2.23.0
1 parent 45d60a7 commit 94f04dd

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

google/cloud/bigtable/data/_async/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ def __init__(
213213
)
214214
if (
215215
credentials
216-
and credentials._universe_domain != self.universe_domain
216+
and credentials.universe_domain != self.universe_domain
217217
and self._emulator_host is None
218218
):
219219
# validate that the universe domain of the credentials matches the

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
dependencies = [
4040
"google-api-core[grpc] >= 2.16.0, <3.0.0",
4141
"google-cloud-core >= 1.4.4, <3.0.0",
42-
"google-auth >= 2.14.1, <3.0.0,!=2.24.0,!=2.25.0",
42+
"google-auth >= 2.23.0, <3.0.0,!=2.24.0,!=2.25.0",
4343
"grpc-google-iam-v1 >= 0.12.4, <1.0.0",
4444
"proto-plus >= 1.22.3, <2.0.0",
4545
"proto-plus >= 1.25.0, <2.0.0; python_version>='3.13'",

testing/constraints-3.7.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# e.g., if setup.py has "foo >= 1.14.0, < 2.0.0dev",
77
# Then this file should have foo==1.14.0
88
google-api-core==2.16.0
9-
google-auth==2.14.1
9+
google-auth==2.23.0
1010
google-cloud-core==2.0.0
1111
grpc-google-iam-v1==0.12.4
1212
proto-plus==1.22.3

testing/constraints-3.8.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# e.g., if setup.py has "foo >= 1.14.0, < 2.0.0dev",
77
# Then this file should have foo==1.14.0
88
google-api-core==2.16.0
9-
google-auth==2.14.1
9+
google-auth==2.23.0
1010
google-cloud-core==2.0.0
1111
grpc-google-iam-v1==0.12.4
1212
proto-plus==1.22.3

0 commit comments

Comments
 (0)