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 appengine/flexible/tasks/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

# Use the official Python image.
# https://hub.docker.com/_/python
FROM python:3.11
FROM python:3.14
Comment thread
XrossFox marked this conversation as resolved.

# Copy local code to the container image.
ENV APP_HOME /app
Expand Down
3 changes: 2 additions & 1 deletion appengine/flexible/tasks/noxfile_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@

TEST_CONFIG_OVERRIDE = {
# You can opt out from the test for specific Python versions.
"ignored_versions": ["2.7", "3.7"],
# Note: Docker-based sample, testing only against version specified in Dockerfile (3.14)
"ignored_versions": ["2.7", "3.7", "3.10"],
# Old samples are opted out of enforcing Python type hints
# All new samples should feature them
"enforce_type_hints": False,
Expand Down
2 changes: 1 addition & 1 deletion auth/custom-credentials/aws/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.13-slim
FROM python:3.14-slim

RUN useradd -m appuser

Expand Down
1 change: 1 addition & 0 deletions auth/custom-credentials/aws/noxfile_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,6 @@
# limitations under the License.

TEST_CONFIG_OVERRIDE = {
# Note: Docker-based sample, testing only against version specified in Dockerfile (3.14)
"ignored_versions": ["2.7", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12"],
}
2 changes: 1 addition & 1 deletion cloud-sql/mysql/sqlalchemy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

# Use the official Python image.
# https://hub.docker.com/_/python
FROM python:3.13
FROM python:3.14

RUN apt-get update

Expand Down
2 changes: 1 addition & 1 deletion cloud-sql/postgres/sqlalchemy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

# Use the official Python image.
# https://hub.docker.com/_/python
FROM python:3.13
FROM python:3.14

RUN apt-get update

Expand Down
2 changes: 1 addition & 1 deletion cloud-sql/sql-server/sqlalchemy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

# Use the official Python image.
# https://hub.docker.com/_/python
FROM python:3.13
FROM python:3.14

RUN apt-get update

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

FROM python:3.11
FROM python:3.14

# Allow statements and log messages to immediately appear in the Cloud Run logs
ENV PYTHONUNBUFFERED True
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
TEST_CONFIG_OVERRIDE = {
# You can opt out from the test for specific Python versions.
# Skipping for Python 3.9 due to numpy compilation failure.
# Note: Docker-based sample, testing only against version specified in Dockerfile (3.14)
"ignored_versions": ["2.7", "3.9", "3.10", "3.11"],
# Old samples are opted out of enforcing Python type hints
# All new samples should feature them
Expand Down
4 changes: 2 additions & 2 deletions dataflow/custom-containers/miniconda/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ FROM continuumio/miniconda3:22.11.1-alpine AS builder

# Create a virtual environment and make it standalone with conda-pack.
# https://conda.github.io/conda-pack
RUN conda create -y -n env python=3.9 \
RUN conda create -y -n env python=3.14 \
&& conda install -y conda-pack \
&& conda-pack -n env -o /tmp/env.tar \
&& mkdir /opt/python \
Expand All @@ -31,7 +31,7 @@ FROM ubuntu:latest
WORKDIR /pipeline

# Set the entrypoint to Apache Beam SDK worker launcher.
COPY --from=apache/beam_python3.9_sdk:2.55.1 /opt/apache/beam /opt/apache/beam
COPY --from=apache/beam_python3.14_sdk:2.73.0 /opt/apache/beam /opt/apache/beam
Comment thread
XrossFox marked this conversation as resolved.
Comment thread
XrossFox marked this conversation as resolved.
ENTRYPOINT [ "/opt/apache/beam/boot" ]

# Copy the python installation from the builder stage.
Expand Down
4 changes: 2 additions & 2 deletions dataflow/custom-containers/miniconda/noxfile_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@

TEST_CONFIG_OVERRIDE = {
# You can opt out from the test for specific Python versions.
# > ℹ️ We're opting out of all Python versions except 3.9.
# > The Python version used is defined by the Dockerfile, so it's redundant
# > to run multiple tests since they would all be running the same Dockerfile.
"ignored_versions": ["2.7", "3.6", "3.7", "3.8", "3.10", "3.11", "3.12", "3.13"],
# Note: Docker-based sample, testing only against version specified in Dockerfile (3.14)
"ignored_versions": ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"],
# Old samples are opted out of enforcing Python type hints
# All new samples should feature them
"enforce_type_hints": True,
Expand Down
4 changes: 2 additions & 2 deletions dataflow/custom-containers/minimal/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@
# See the License for the specific language governing permissions and
# limitations under the License.

FROM python:3.9-slim
FROM python:3.14-slim

WORKDIR /pipeline

# Set the entrypoint to Apache Beam SDK worker launcher.
COPY --from=apache/beam_python3.9_sdk:2.55.1 /opt/apache/beam /opt/apache/beam
COPY --from=apache/beam_python3.14_sdk:2.73.0 /opt/apache/beam /opt/apache/beam
ENTRYPOINT [ "/opt/apache/beam/boot" ]

# Install the requirements.
Expand Down
4 changes: 2 additions & 2 deletions dataflow/custom-containers/minimal/noxfile_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@

TEST_CONFIG_OVERRIDE = {
# You can opt out from the test for specific Python versions.
# > ℹ️ We're opting out of all Python versions except 3.9.
# > The Python version used is defined by the Dockerfile, so it's redundant
# > to run multiple tests since they would all be running the same Dockerfile.
"ignored_versions": ["2.7", "3.6", "3.7", "3.8", "3.10", "3.11", "3.12", "3.13"],
# Note: Docker-based sample, testing only against version specified in Dockerfile (3.14)
"ignored_versions": ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"],
# Old samples are opted out of enforcing Python type hints
# All new samples should feature them
"enforce_type_hints": True,
Expand Down
2 changes: 1 addition & 1 deletion dataflow/custom-containers/ubuntu/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ FROM ubuntu:focal
WORKDIR /pipeline

# Set the entrypoint to Apache Beam SDK worker launcher.
COPY --from=apache/beam_python3.8_sdk:2.40.0 /opt/apache/beam /opt/apache/beam
COPY --from=apache/beam_python3.14_sdk:2.73.0 /opt/apache/beam /opt/apache/beam
ENTRYPOINT [ "/opt/apache/beam/boot" ]

# Install Python with pip, dev tools, distutils, and a C++ compiler.
Expand Down
4 changes: 2 additions & 2 deletions dataflow/custom-containers/ubuntu/noxfile_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@

TEST_CONFIG_OVERRIDE = {
# You can opt out from the test for specific Python versions.
# > ℹ️ We're opting out of all Python versions except 3.9.
# > The Python version used is defined by the Dockerfile, so it's redundant
# > to run multiple tests since they would all be running the same Dockerfile.
"ignored_versions": ["2.7", "3.6", "3.7", "3.8", "3.10", "3.11", "3.12", "3.13"],
# Note: Docker-based sample, testing only against version specified in Dockerfile (3.14)
"ignored_versions": ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"],
# Old samples are opted out of enforcing Python type hints
# All new samples should feature them
"enforce_type_hints": True,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@
# This Dockerfile illustrates how to use a custom base image when building
# a custom contaier images for Dataflow. A 'slim' base image is smaller in size,
# but does not include some preinstalled libraries, like google-cloud-debugger.
# To use a standard image, use apache/beam_python3.11_sdk:2.54.0 instead.
# To use a standard image, use apache/beam_python3.14_sdk:2.73.0 instead.
# Use consistent versions of Python interpreter in the project.
FROM python:3.11-slim
FROM python:3.14-slim

# Copy SDK entrypoint binary from Apache Beam image, which makes it possible to
# use the image as SDK container image. If you explicitly depend on
# apache-beam in setup.py, use the same version of Beam in both files.
COPY --from=apache/beam_python3.11_sdk:2.54.0 /opt/apache/beam /opt/apache/beam
COPY --from=apache/beam_python3.14_sdk:2.73.0 /opt/apache/beam /opt/apache/beam

# Copy Flex Template launcher binary from the launcher image, which makes it
# possible to use the image as a Flex Template base image.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@

TEST_CONFIG_OVERRIDE = {
# You can opt out from the test for specific Python versions.
# > ℹ️ We're opting out of all Python versions except 3.11.
# > The Python version used is defined by the Dockerfile, so it's redundant
# > to run multiple tests since they would all be running the same Dockerfile.
"ignored_versions": ["2.7", "3.6", "3.7", "3.8", "3.9", "3.10", "3.12", "3.13"],
# Note: Docker-based sample, testing only against version specified in Dockerfile (3.14)
"ignored_versions": ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"],
}
4 changes: 2 additions & 2 deletions dataflow/gemma-flex-template/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ RUN pip install --no-cache-dir --upgrade pip \
# Copy SDK entrypoint binary from Apache Beam image, which makes it possible to
# use the image as SDK container image.
# The Beam version should match the version specified in requirements.txt
COPY --from=apache/beam_python3.10_sdk:2.62.0 /opt/apache/beam /opt/apache/beam
COPY --from=apache/beam_python3.14_sdk:2.73.0 /opt/apache/beam /opt/apache/beam
Comment thread
XrossFox marked this conversation as resolved.

# Copy Flex Template launcher binary from the launcher image, which makes it
# possible to use the image as a Flex Template base image.
COPY --from=gcr.io/dataflow-templates-base/python310-template-launcher-base:latest /opt/google/dataflow/python_template_launcher /opt/google/dataflow/python_template_launcher
COPY --from=gcr.io/dataflow-templates-base/python314-template-launcher-base:latest /opt/google/dataflow/python_template_launcher /opt/google/dataflow/python_template_launcher

# Copy the model directory downloaded from Kaggle and the pipeline code.
COPY pytorch_model pytorch_model
Expand Down
4 changes: 2 additions & 2 deletions dataflow/gemma-flex-template/noxfile_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@

TEST_CONFIG_OVERRIDE = {
# You can opt out from the test for specific Python versions.
# Opting out of all Python versions except 3.10.
# The Python version used is defined by the Dockerfile and the job
# submission enviornment must match.
"ignored_versions": ["2.7", "3.6", "3.7", "3.8", "3.9", "3.11", "3.12", "3.13"],
# Note: Docker-based sample, testing only against version specified in Dockerfile (3.14)
"ignored_versions": ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"],
"envs": {
"PYTHONPATH": ".."
},
Expand Down
2 changes: 1 addition & 1 deletion dataflow/gemma/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ RUN pip install --upgrade --no-cache-dir pip \
&& pip install --no-cache-dir -r requirements.txt

# Copy files from official SDK image, including script/dependencies.
COPY --from=apache/beam_python3.11_sdk:2.54.0 /opt/apache/beam /opt/apache/beam
COPY --from=apache/beam_python3.14_sdk:2.73.0 /opt/apache/beam /opt/apache/beam

# Copy the model directory downloaded from Kaggle and the pipeline code.
COPY gemma_2b gemma_2B
Expand Down
4 changes: 2 additions & 2 deletions dataflow/gemma/noxfile_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@

TEST_CONFIG_OVERRIDE = {
# You can opt out from the test for specific Python versions.
# Opting out of all Python versions except 3.11.
# The Python version used is defined by the Dockerfile and the job
# submission enviornment must match.
"ignored_versions": ["2.7", "3.6", "3.7", "3.8", "3.9", "3.10", "3.12", "3.13"],
# Note: Docker-based sample, testing only against version specified in Dockerfile (3.14)
"ignored_versions": ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"],
"envs": {
"PYTHONPATH": ".."
},
Expand Down
2 changes: 1 addition & 1 deletion dataflow/gpu-examples/pytorch-minimal/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ RUN pip install --no-cache-dir --upgrade pip \
&& pip check

# Set the entrypoint to Apache Beam SDK worker launcher.
COPY --from=apache/beam_python3.10_sdk:2.62.0 /opt/apache/beam /opt/apache/beam
COPY --from=apache/beam_python3.14_sdk:2.73.0 /opt/apache/beam /opt/apache/beam
ENTRYPOINT [ "/opt/apache/beam/boot" ]
4 changes: 2 additions & 2 deletions dataflow/gpu-examples/pytorch-minimal/noxfile_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@

TEST_CONFIG_OVERRIDE = {
# You can opt out from the test for specific Python versions.
# > ℹ️ We're opting out of all Python versions except 3.10.
# > The Python version used is defined by the Dockerfile, so it's redundant
# > to run multiple tests since they would all be running the same Dockerfile.
"ignored_versions": ["2.7", "3.6", "3.7", "3.8", "3.9", "3.11", "3.12", "3.13"],
# Note: Docker-based sample, testing only against version specified in Dockerfile (3.14)
"ignored_versions": ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"],
# Old samples are opted out of enforcing Python type hints
# All new samples should feature them
"enforce_type_hints": True,
Expand Down
6 changes: 3 additions & 3 deletions dataflow/gpu-examples/tensorflow-landsat-prime/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,15 @@ COPY *.py ./
RUN apt-get update \
# Install Python and other system dependencies.
&& apt-get install -y --no-install-recommends \
curl g++ python3.10-dev python3.10-venv python3-distutils \
curl g++ python3.14-dev python3.14-venv python3-distutils \
&& rm -rf /var/lib/apt/lists/* \
&& update-alternatives --install /usr/bin/python python /usr/bin/python3.10 10 \
&& update-alternatives --install /usr/bin/python python /usr/bin/python3.14 10 \
&& curl https://bootstrap.pypa.io/get-pip.py | python \
# Install the pipeline requirements.
&& pip install --no-cache-dir -r requirements.txt \
&& pip check

# Set the entrypoint to Apache Beam SDK worker launcher.
# Check this matches the apache-beam version in the requirements.txt
COPY --from=apache/beam_python3.10_sdk:2.62.0 /opt/apache/beam /opt/apache/beam
COPY --from=apache/beam_python3.14_sdk:2.73.0 /opt/apache/beam /opt/apache/beam
Comment thread
XrossFox marked this conversation as resolved.
ENTRYPOINT [ "/opt/apache/beam/boot" ]
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@

TEST_CONFIG_OVERRIDE = {
# You can opt out from the test for specific Python versions.
# > ℹ️ Test only on Python 3.10.
# > The Python version used is defined by the Dockerfile, so it's redundant
# > to run multiple tests since they would all be running the same Dockerfile.
"ignored_versions": ["2.7", "3.6", "3.7", "3.8", "3.9", "3.11", "3.12", "3.13"],
# Note: Docker-based sample, testing only against version specified in Dockerfile (3.14)
"ignored_versions": ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"],
# Old samples are opted out of enforcing Python type hints
# All new samples should feature them
"enforce_type_hints": True,
Expand Down
6 changes: 3 additions & 3 deletions dataflow/gpu-examples/tensorflow-landsat/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,15 @@ COPY *.py ./
RUN apt-get update \
# Install Python and other system dependencies.
&& apt-get install -y --no-install-recommends \
curl g++ python3.10-dev python3.10-venv python3-distutils \
curl g++ python3.14-dev python3.14-venv python3-distutils \
&& rm -rf /var/lib/apt/lists/* \
&& update-alternatives --install /usr/bin/python python /usr/bin/python3.10 10 \
&& update-alternatives --install /usr/bin/python python /usr/bin/python3.14 10 \
&& curl https://bootstrap.pypa.io/get-pip.py | python \
# Install the pipeline requirements.
&& pip install --no-cache-dir -r requirements.txt \
&& pip check

# Set the entrypoint to Apache Beam SDK worker launcher.
# Check this matches the apache-beam version in the requirements.txt
COPY --from=apache/beam_python3.10_sdk:2.62.0 /opt/apache/beam /opt/apache/beam
COPY --from=apache/beam_python3.14_sdk:2.73.0 /opt/apache/beam /opt/apache/beam
Comment thread
XrossFox marked this conversation as resolved.
ENTRYPOINT [ "/opt/apache/beam/boot" ]
4 changes: 2 additions & 2 deletions dataflow/gpu-examples/tensorflow-landsat/noxfile_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@

TEST_CONFIG_OVERRIDE = {
# You can opt out from the test for specific Python versions.
# > ℹ️ Test only on Python 3.10.
# > The Python version used is defined by the Dockerfile, so it's redundant
# > to run multiple tests since they would all be running the same Dockerfile.
"ignored_versions": ["2.7", "3.6", "3.7", "3.8", "3.9", "3.11", "3.12", "3.13"],
# Note: Docker-based sample, testing only against version specified in Dockerfile (3.14)
"ignored_versions": ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"],
# Old samples are opted out of enforcing Python type hints
# All new samples should feature them
"enforce_type_hints": True,
Expand Down
6 changes: 3 additions & 3 deletions dataflow/gpu-examples/tensorflow-minimal/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,15 @@ COPY *.py ./
RUN apt-get update \
# Install Python and other system dependencies.
&& apt-get install -y --no-install-recommends \
curl g++ python3.10-dev python3.10-venv python3-distutils \
curl g++ python3.14-dev python3.14-venv python3-distutils \
&& rm -rf /var/lib/apt/lists/* \
&& update-alternatives --install /usr/bin/python python /usr/bin/python3.10 10 \
&& update-alternatives --install /usr/bin/python python /usr/bin/python3.14 10 \
&& curl https://bootstrap.pypa.io/get-pip.py | python \
# Install the pipeline requirements.
&& pip install --no-cache-dir -r requirements.txt \
&& pip check

# Set the entrypoint to Apache Beam SDK worker launcher.
# Check this matches the apache-beam version in the requirements.txt
COPY --from=apache/beam_python3.10_sdk:2.62.0 /opt/apache/beam /opt/apache/beam
COPY --from=apache/beam_python3.14_sdk:2.73.0 /opt/apache/beam /opt/apache/beam
Comment thread
XrossFox marked this conversation as resolved.
ENTRYPOINT [ "/opt/apache/beam/boot" ]
4 changes: 2 additions & 2 deletions dataflow/gpu-examples/tensorflow-minimal/noxfile_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@

TEST_CONFIG_OVERRIDE = {
# You can opt out from the test for specific Python versions.
# > ℹ️ Test only on Python 3.10.
# > The Python version used is defined by the Dockerfile, so it's redundant
# > to run multiple tests since they would all be running the same Dockerfile.
"ignored_versions": ["2.7", "3.6", "3.7", "3.8", "3.9", "3.11", "3.12", "3.13"],
# Note: Docker-based sample, testing only against version specified in Dockerfile (3.14)
"ignored_versions": ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"],
# Old samples are opted out of enforcing Python type hints
# All new samples should feature them
"enforce_type_hints": True,
Expand Down
6 changes: 3 additions & 3 deletions dataflow/snippets/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# on the host machine. This Dockerfile is derived from the
# dataflow/custom-containers/ubuntu sample.

FROM python:3.12-slim
FROM python:3.14-slim

# Install JRE
COPY --from=openjdk:8-jre-slim /usr/local/openjdk-8 /usr/local/openjdk-8
Expand All @@ -28,7 +28,7 @@ RUN update-alternatives --install /usr/bin/java java /usr/local/openjdk-8/bin/ja
WORKDIR /pipeline

# Copy files from official SDK image.
COPY --from=apache/beam_python3.11_sdk:2.63.0 /opt/apache/beam /opt/apache/beam
COPY --from=apache/beam_python3.14_sdk:2.73.0 /opt/apache/beam /opt/apache/beam
Comment thread
XrossFox marked this conversation as resolved.
# Set the entrypoint to Apache Beam SDK launcher.
ENTRYPOINT [ "/opt/apache/beam/boot" ]

Expand All @@ -37,7 +37,7 @@ RUN apt-get update
RUN apt-get install -y --no-install-recommends docker.io

# Install dependencies.
RUN pip3 install --no-cache-dir apache-beam[gcp]==2.63.0
RUN pip3 install --no-cache-dir apache-beam[gcp]==2.73.0
Comment thread
XrossFox marked this conversation as resolved.
RUN pip install --no-cache-dir kafka-python==2.0.6

# Verify that the image does not have conflicting dependencies.
Expand Down
1 change: 1 addition & 0 deletions dataflow/snippets/noxfile_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@

TEST_CONFIG_OVERRIDE = {
# You can opt out from the test for specific Python versions.
# Note: Docker-based sample, testing only against version specified in Dockerfile (3.14)
"ignored_versions": ["2.7", "3.7", "3.8", "3.9", "3.10", "3.13"],
# Old samples are opted out of enforcing Python type hints
# All new samples should feature them
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
pytest==8.2.0
pytest==9.0.3; python_version >= "3.10"
2 changes: 1 addition & 1 deletion endpoints/bookstore-grpc/requirements-test.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
pytest==8.2.0
pytest==9.0.3; python_version >= "3.10"
2 changes: 1 addition & 1 deletion endpoints/getting-started-grpc/requirements-test.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
pytest==8.2.0
pytest==9.0.3; python_version >= "3.10"
Original file line number Diff line number Diff line change
@@ -1 +1 @@
pytest==8.2.0
endpoints/getting-started/clients/service_to_service_non_default/requirements-test.txt
Loading