@@ -103,8 +103,8 @@ def get_staging_dirs(
103103 unit_test_external_dependencies = ["six" ],
104104 system_test_external_dependencies = ["six" ],
105105 cov_level = 100 ,
106- default_python_version = "3.13 " ,
107- system_test_python_versions = ["3.13 " ],
106+ default_python_version = "3.10 " ,
107+ system_test_python_versions = ["3.10 " ],
108108)
109109s .move (
110110 templated_files ,
@@ -116,7 +116,7 @@ def get_staging_dirs(
116116python .configure_previous_major_version_branches ()
117117
118118# Preserve system tests w/ GOOGLE_DISABLE_GRPC set (#133, PR #136)
119- s .replace (
119+ assert 1 == s .replace (
120120 "noxfile.py" ,
121121 r"""\
122122@nox.session\(python=SYSTEM_TEST_PYTHON_VERSIONS\)
@@ -129,7 +129,7 @@ def system(session, disable_grpc):
129129""" ,
130130)
131131
132- s .replace (
132+ assert 1 == s .replace (
133133 "noxfile.py" ,
134134 """\
135135 # Run py.test against the system tests.
@@ -143,7 +143,7 @@ def system(session, disable_grpc):
143143""" ,
144144)
145145
146- s .replace (
146+ assert 1 == s .replace (
147147 "noxfile.py" ,
148148 """system_test_path,
149149 \*session.posargs,
@@ -154,7 +154,7 @@ def system(session, disable_grpc):
154154 )""" ,
155155)
156156
157- s .replace (
157+ assert 1 == s .replace (
158158 "noxfile.py" ,
159159 """system_test_folder_path,
160160 \*session.posargs,
@@ -166,7 +166,7 @@ def system(session, disable_grpc):
166166)
167167
168168# Add nox session to exercise doctests
169- s .replace (
169+ assert 1 == s .replace (
170170 "noxfile.py" ,
171171 r"""\
172172 "blacken",
@@ -179,14 +179,14 @@ def system(session, disable_grpc):
179179""" ,
180180)
181181
182- s .replace (
182+ assert 1 == s .replace (
183183 "noxfile.py" ,
184184 r"""\
185185@nox.session\(python="3.10"\)
186186def docfx\(session\):
187187""" ,
188188 """\
189- @nox.session(python="3.13 ")
189+ @nox.session(python="3.9 ")
190190def doctests(session):
191191 # Install all test dependencies, then install this package into the
192192 # virtualenv's dist-packages.
@@ -197,7 +197,7 @@ def doctests(session):
197197 session.run("py.test", "tests/doctests.py")
198198
199199
200- @nox.session(python="3.13 ")
200+ @nox.session(python="3.10 ")
201201def docfx(session):
202202""" ,
203203)
0 commit comments