From 871e52b37a5c59cbc143881936213f1f60bc111f Mon Sep 17 00:00:00 2001 From: Quentin Pradet Date: Tue, 11 Feb 2025 18:36:57 +0400 Subject: [PATCH] Pin nox to avoid session.env issue (#753) --- .buildkite/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.buildkite/Dockerfile b/.buildkite/Dockerfile index d191f60..f03f23b 100644 --- a/.buildkite/Dockerfile +++ b/.buildkite/Dockerfile @@ -4,6 +4,7 @@ FROM python:${PYTHON_VERSION} ENV FORCE_COLOR=1 WORKDIR /code/eland -RUN python -m pip install nox +# https://github.com/wntrblm/nox/issues/930 +RUN python -m pip install nox==2024.10.09 COPY . .