Skip to content

Commit a803ac7

Browse files
committed
chore: typo
1 parent 8e473c8 commit a803ac7

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

packages/bigframes/noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ def run_unit(session, install_test_extra):
283283
@nox.session(python=ALL_PYTHON)
284284
@nox.parametrize("test_extra", [True, False])
285285
def unit(session, test_extra):
286-
if session.python == 3.15:
286+
if session.python == "3.15":
287287
session.skip("Skipping 3.15 until wheels are available for pyproj needed for dependency geopandas")
288288
if test_extra:
289289
run_unit(session, install_test_extra=test_extra)

packages/bigquery-magics/noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ def install_unittest_dependencies(session, *constraints):
227227
@nox.session(python=UNIT_TEST_PYTHON_VERSIONS)
228228
def unit(session):
229229
# Install all test dependencies, then install this package in-place.
230-
if session.python == 3.15:
230+
if session.python == "3.15":
231231
session.skip("Skipping 3.15 until wheels are available for pyproj needed for dependency geopandas")
232232

233233
constraints_path = str(

packages/google-cloud-bigquery/noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ def default(session, install_extras=True):
169169
@_calculate_duration
170170
def unit(session, test_type):
171171
"""Run the unit test suite."""
172-
if session.python == 3.15:
172+
if session.python == "3.15":
173173
session.skip("Skipping 3.15 until wheels are available for pyproj needed for dependency geopandas")
174174

175175
install_extras = True

packages/pandas-gbq/noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ def default(session):
243243
@_calculate_duration
244244
def unit(session):
245245
"""Run the unit test suite."""
246-
if session.python == 3.15:
246+
if session.python == "3.15":
247247
session.skip("Skipping 3.15 until wheels are available for pyproj needed for dependency geopandas")
248248

249249
default(session)

0 commit comments

Comments
 (0)