Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
LINT_PATHS = ["docs", "pandas_gbq", "tests", "noxfile.py", "setup.py"]

DEFAULT_PYTHON_VERSION = "3.10"

LINT_PYTHON_VERSION = "3.10"

UNIT_TEST_PYTHON_VERSIONS = ["3.9", "3.10", "3.11", "3.12", "3.13"]
UNIT_TEST_STANDARD_DEPENDENCIES = [
Expand Down Expand Up @@ -109,7 +109,7 @@ def wrapper(*args, **kwargs):
nox.options.error_on_missing_interpreters = True


@nox.session(python=DEFAULT_PYTHON_VERSION)
@nox.session(python=LINT_PYTHON_VERSION)
@_calculate_duration
def lint(session):
"""Run linters.
Expand Down Expand Up @@ -158,7 +158,7 @@ def format(session):
)


@nox.session(python=DEFAULT_PYTHON_VERSION)
@nox.session(python=LINT_PYTHON_VERSION)
@_calculate_duration
def lint_setup_py(session):
"""Verify that setup.py is valid (including RST check)."""
Expand Down
7 changes: 6 additions & 1 deletion owlbot.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,16 @@
"docs/multiprocessing.rst",
"noxfile.py",
"README.rst",
".github/workflows/docs.yml",
".github/workflows/docs.yml", # to avoid overwriting python version
".github/workflows/lint.yml", # to avoid overwriting python version
".github/sync-repo-settings.yaml",
# exclude this file as we have an alternate prerelease.cfg
".kokoro/presubmit/prerelease-deps.cfg",
".kokoro/presubmit/presubmit.cfg",
"renovate.json", # to avoid overwriting the ignorePaths list additions:
# ".github/workflows/docs.yml AND lint.yml" specifically
# the version of python referenced in each of those files.
# Currently renovate bot wants to change 3.10 to 3.13.
],
)

Expand Down
2 changes: 1 addition & 1 deletion renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
":preserveSemverRanges",
":disableDependencyDashboard"
],
"ignorePaths": [".pre-commit-config.yaml", ".kokoro/requirements.txt", "setup.py", ".github/workflows/unittest.yml"],
"ignorePaths": [".pre-commit-config.yaml", ".kokoro/requirements.txt", "setup.py", ".github/workflows/unittest.yml", ".github/workflows/docs.yml", ".github/workflows/lint.yml"],
"pip_requirements": {
"fileMatch": ["requirements-test.txt", "samples/[\\S/]*constraints.txt", "samples/[\\S/]*constraints-test.txt"]
}
Expand Down
4 changes: 2 additions & 2 deletions samples/snippets/requirements-test.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
google-cloud-testutils==1.6.0
pytest==8.3.5
google-cloud-testutils==1.6.4
pytest==8.4.1
10 changes: 5 additions & 5 deletions samples/snippets/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
google-cloud-bigquery-storage==2.29.1
google-cloud-bigquery==3.30.0
pandas-gbq==0.28.0
pandas==2.2.3
pyarrow==19.0.1
google-cloud-bigquery-storage==2.32.0
google-cloud-bigquery==3.34.0
pandas-gbq==0.29.1
pandas==2.3.0
pyarrow==20.0.0