Skip to content
This repository was archived by the owner on Mar 6, 2026. It is now read-only.

Commit 01ad4f7

Browse files
authored
Merge branch 'main' into jules-13051961428180802207-95fbd6c5
2 parents 08e3cee + 4292ab0 commit 01ad4f7

5 files changed

Lines changed: 14 additions & 21 deletions

File tree

.github/workflows/unittest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
runs-on: ubuntu-22.04
2727
strategy:
2828
matrix:
29-
python: ['3.8']
29+
python: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
3030
steps:
3131
- name: Checkout
3232
uses: actions/checkout@v4

google/auth/__init__.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,12 @@ class Python37DeprecationWarning(DeprecationWarning): # pragma: NO COVER
4242

4343

4444
# Raise warnings for deprecated versions
45-
eol_message = """
46-
You are using a Python version {} past its end of life. Google will update
47-
google-auth with critical bug fixes on a best-effort basis, but not
48-
with any other fixes or features. Please upgrade your Python version,
49-
and then update google-auth.
50-
"""
45+
eol_message = (
46+
"You are using a Python version {} past its end of life. Google will update "
47+
"google-auth with critical bug fixes on a best-effort basis, but not "
48+
"with any other fixes or features. Please upgrade your Python version, "
49+
"and then update google-auth."
50+
)
5151
if sys.version_info.major == 3 and sys.version_info.minor == 8: # pragma: NO COVER
5252
warnings.warn(eol_message.format("3.8"), FutureWarning)
5353
elif sys.version_info.major == 3 and sys.version_info.minor == 9: # pragma: NO COVER

google/oauth2/__init__.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@ class Python37DeprecationWarning(DeprecationWarning): # pragma: NO COVER
2828

2929

3030
# Raise warnings for deprecated versions
31-
eol_message = """
32-
You are using a Python version {} past its end of life. Google will update
33-
google-auth with critical bug fixes on a best-effort basis, but not
34-
with any other fixes or features. Please upgrade your Python version,
35-
and then update google-auth.
36-
"""
31+
eol_message = (
32+
"You are using a Python version {} past its end of life. Google will update "
33+
"google-auth with critical bug fixes on a best-effort basis, but not "
34+
"with any other fixes or features. Please upgrade your Python version, "
35+
"and then update google-auth."
36+
)
3737
if sys.version_info.major == 3 and sys.version_info.minor == 8: # pragma: NO COVER
3838
warnings.warn(eol_message.format("3.8"), FutureWarning)
3939
elif sys.version_info.major == 3 and sys.version_info.minor == 9: # pragma: NO COVER

noxfile.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -51,14 +51,7 @@
5151
"lint",
5252
"blacken",
5353
"mypy",
54-
"unit-3.9",
55-
"unit-3.10",
56-
"unit-3.11",
57-
"unit-3.12",
58-
"unit-3.13",
59-
"unit-3.14",
6054
# cover must be last to avoid error `No data to report`
61-
"cover",
6255
"docs",
6356
]
6457

samples/cloud-client/snippets/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
google-cloud-compute==1.41.0
1+
google-cloud-compute==1.42.0
22
google-cloud-storage==3.8.0
33
google-auth==2.47.0
44
pytest===8.4.2; python_version == '3.9'

0 commit comments

Comments
 (0)