Skip to content

Commit 8f9c805

Browse files
chore(deps): Upgrade snippets and sample dependencies (#1421)
Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
1 parent c198bef commit 8f9c805

File tree

4 files changed

+13
-10
lines changed

4 files changed

+13
-10
lines changed

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: Setup Python
1313
uses: actions/setup-python@v5
1414
with:
15-
python-version: "3.8"
15+
python-version: "3.10"
1616
- name: Install nox
1717
run: |
1818
python -m pip install --upgrade setuptools pip wheel

noxfile.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434

3535
MYPY_VERSION = "mypy==1.10.0"
3636

37-
DEFAULT_PYTHON_VERSION = "3.8"
37+
DEFAULT_PYTHON_VERSION = "3.10"
3838

3939
UNIT_TEST_PYTHON_VERSIONS: List[str] = [
4040
"3.7",
@@ -351,7 +351,7 @@ def cover(session):
351351
session.run("coverage", "erase")
352352

353353

354-
@nox.session(python="3.10")
354+
@nox.session(python=DEFAULT_PYTHON_VERSION)
355355
def docs(session):
356356
"""Build the docs for this library."""
357357

@@ -386,7 +386,7 @@ def docs(session):
386386
)
387387

388388

389-
@nox.session(python="3.10")
389+
@nox.session(python=DEFAULT_PYTHON_VERSION)
390390
def docfx(session):
391391
"""Build the docfx yaml files for this library."""
392392

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
backoff==2.2.1
22
pytest===7.4.4; python_version == '3.7'
3-
pytest==8.3.5; python_version >= '3.8'
3+
pytest===8.3.5; python_version == '3.8'
4+
pytest==8.4.0; python_version >= '3.9'
45
mock==5.2.0
56
flaky==3.8.1
6-
google-cloud-bigquery==3.30.0; python_version < '3.9'
7-
google-cloud-bigquery==3.33.0; python_version >= '3.9'
7+
google-cloud-bigquery===3.30.0; python_version <= '3.8'
8+
google-cloud-bigquery==3.34.0; python_version >= '3.9'
89
google-cloud-storage==3.1.0

samples/snippets/requirements.txt

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
1-
google-cloud-pubsub==2.29.0
1+
google-cloud-pubsub==2.29.1
22
avro==1.12.0
33
protobuf===4.24.4; python_version == '3.7'
44
protobuf===5.29.4; python_version == '3.8'
55
protobuf==6.31.1; python_version >= '3.9'
66
avro==1.12.0
77
opentelemetry-api===1.22.0; python_version == '3.7'
88
opentelemetry-sdk===1.22.0; python_version == '3.7'
9-
opentelemetry-api==1.33.1; python_version >= '3.8'
10-
opentelemetry-sdk==1.33.1; python_version >= '3.8'
9+
opentelemetry-api===1.33.1; python_version == '3.8'
10+
opentelemetry-sdk===1.33.1; python_version == '3.8'
11+
opentelemetry-api==1.34.0; python_version >= '3.9'
12+
opentelemetry-sdk==1.34.0; python_version >= '3.9'
1113
opentelemetry-exporter-gcp-trace==1.9.0

0 commit comments

Comments
 (0)