From 6402be1b9d221ff6883ebfed0e713418048a3a6a Mon Sep 17 00:00:00 2001 From: Guillaume Abrioux Date: Mon, 16 Jan 2023 17:50:13 +0100 Subject: [PATCH] ceph-volume-scenario: pin the tox version Due to a regression introduced in tox 4.3.1, we have to pin the version used in the CI in order to avoid the following error: ``` tox.report.HandledError: replace failed in centos8-filestore-create.commands with MatchRecursionError('circular chain between set env VAGRANT_UP_FLAGS, CEPH_DEV_BRANCH, CEPH_DEV_SHA1') ``` Signed-off-by: Guillaume Abrioux --- ceph-volume-scenario/build/build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ceph-volume-scenario/build/build b/ceph-volume-scenario/build/build index 2b7ea3552..18e464c1a 100644 --- a/ceph-volume-scenario/build/build +++ b/ceph-volume-scenario/build/build @@ -3,7 +3,7 @@ set -ex WORKDIR=$(mktemp -td tox.XXXXXXXXXX) # the following two methods exist in scripts/build_utils.sh -pkgs=( "tox" ) +pkgs=( "tox==4.2.8" ) TEMPVENV=$(create_venv_dir) VENV=${TEMPVENV}/bin install_python_packages $TEMPVENV "pkgs[@]" -- 2.47.3