Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion .github/workflows/configure_release_please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
- name: Set up Python 3.11
uses: actions/setup-python@v6
with:
python-version: 3.13
python-version: 3.14
- name: Run configure_release_please.py
run: python3 configure_release_please.py
working-directory: ./scripts/configure_release_please
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v6
with:
python-version: "3.13"
python-version: "3.14"
- name: Install nox
run: |
python -m pip install --upgrade setuptools pip wheel
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
- name: Set up Python 3.10
uses: actions/setup-python@v6
with:
python-version: "3.13"
python-version: "3.14"
- name: Install script dependencies
run: pip3 install -r requirements.txt
working-directory: ./scripts
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scripts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v6
with:
python-version: "3.13"
python-version: "3.14"
- name: Install pytest
run: |
python -m pip install pytest
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/unittest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-22.04
strategy:
matrix:
python: ['3.7', '3.8', '3.9', '3.10', "3.11", "3.12", "3.13"]
python: ['3.7', '3.8', '3.9', '3.10', "3.11", "3.12", "3.13", "3.14"]
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -86,8 +86,8 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python: ["3.13"]
option: ["core_deps_from_source"]
python: ["3.14"]
option: ["core_deps_from_source-3.14"]
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
6 changes: 5 additions & 1 deletion ci/run_single_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ case ${TEST_TYPE} in
rm -rf docs/_build
;;
prerelease)
nox -s prerelease_deps
nox -s prerelease_deps-3.14
retval=$?
;;
unit)
Expand Down Expand Up @@ -94,6 +94,10 @@ case ${TEST_TYPE} in
nox -s unit-3.13
retval=$?
;;
"3.14")
nox -s unit-3.14
retval=$?
;;
*)
echo "unsupported PY_VERSION"
exit 1
Expand Down
36 changes: 33 additions & 3 deletions packages/google-cloud-bigquery-storage/noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
"3.11",
"3.12",
"3.13",
"3.14",
]

DEFAULT_PYTHON_VERSION = ALL_PYTHON[-1]
Expand Down Expand Up @@ -62,7 +63,15 @@
]
UNIT_TEST_EXTRAS_BY_PYTHON: Dict[str, List[str]] = {}

SYSTEM_TEST_PYTHON_VERSIONS: List[str] = ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
SYSTEM_TEST_PYTHON_VERSIONS: List[str] = [
"3.8",
"3.9",
"3.10",
"3.11",
"3.12",
"3.13",
"3.14",
]
SYSTEM_TEST_STANDARD_DEPENDENCIES = [
"mock",
"pytest",
Expand Down Expand Up @@ -236,6 +245,13 @@ def unit(session, protobuf_implementation):
if protobuf_implementation == "cpp" and session.python in ("3.11", "3.12", "3.13"):
session.skip("cpp implementation is not supported in python 3.11+")

# TODO(https://github.com/googleapis/google-cloud-python/issues/14686):
# Run tests with 3.14 once this bug is fixed
if session.python == "3.14":
session.skip(
"3.14 is not yet supported. See https://github.com/googleapis/google-cloud-python/issues/14686"
)

constraints_path = str(
CURRENT_DIRECTORY / "testing" / f"constraints-{session.python}.txt"
)
Expand Down Expand Up @@ -459,7 +475,7 @@ def docfx(session):
)


@nox.session(python=DEFAULT_PYTHON_VERSION)
@nox.session(python=["3.13", "3.14"])
@nox.parametrize(
"protobuf_implementation",
["python", "upb", "cpp"],
Expand All @@ -475,6 +491,13 @@ def prerelease_deps(session, protobuf_implementation):
if protobuf_implementation == "cpp" and session.python in ("3.11", "3.12", "3.13"):
session.skip("cpp implementation is not supported in python 3.11+")

# TODO(https://github.com/googleapis/google-cloud-python/issues/14686):
# Run tests with 3.14 once this bug is fixed
if session.python == "3.14":
session.skip(
"3.14 is not yet supported. See https://github.com/googleapis/google-cloud-python/issues/14686"
)

# Install all dependencies
session.install("-e", ".")

Expand Down Expand Up @@ -558,7 +581,7 @@ def prerelease_deps(session, protobuf_implementation):
)


@nox.session(python=DEFAULT_PYTHON_VERSION)
@nox.session(python=["3.13", "3.14"])
@nox.parametrize(
"protobuf_implementation",
["python", "upb"],
Expand All @@ -568,6 +591,13 @@ def core_deps_from_source(session, protobuf_implementation):
rather than pulling the dependencies from PyPI.
"""

# TODO(https://github.com/googleapis/google-cloud-python/issues/14686):
# Run tests with 3.14 once this bug is fixed
if session.python == "3.14":
session.skip(
"3.14 is not yet supported. See https://github.com/googleapis/google-cloud-python/issues/14686"
)

# Install all dependencies
session.install("-e", ".")

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
google-auth==2.40.3
google-auth==2.41.1
google-cloud-bigquery-storage==2.33.1
google-cloud-bigquery===3.30.0; python_version <= '3.8'
google-cloud-bigquery==3.38.0; python_version >= '3.9'
Expand All @@ -9,11 +9,11 @@ ipython===7.31.1; python_version == '3.7'
ipython===8.10.0; python_version == '3.8'
ipython===8.18.1; python_version == '3.9'
ipython===8.33.0; python_version == '3.10'
ipython==9.5.0; python_version >= '3.11'
ipython==9.6.0; python_version >= '3.11'
ipywidgets==8.1.7
pandas===1.3.5; python_version == '3.7'
pandas===2.0.3; python_version == '3.8'
pandas==2.3.2; python_version >= '3.9'
pandas==2.3.3; python_version >= '3.9'
tqdm==4.67.1
db-dtypes===1.4.2; python_version <= '3.8'
db-dtypes==1.4.3; python_version >= '3.9'
Empty file.
Loading