From 940400998aeade3d7c66a3a59cf3d1dfabf42627 Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Sun, 11 Oct 2020 15:13:30 +0200 Subject: [PATCH] ci(dockerfile): fix other python versions --- ci/Dockerfile | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/ci/Dockerfile b/ci/Dockerfile index 517ac9a4ec..82d5707781 100644 --- a/ci/Dockerfile +++ b/ci/Dockerfile @@ -48,12 +48,15 @@ ARG FULLDEPS_TESTING=0 ENV FULLDEPS_TESTING=${FULLDEPS_TESTING} # install other python versions for tox testing +# 3.8 is already included in the default install RUN if [ "${FULLDEPS_TESTING}" = "1" ]; then \ - nix-env -iP python3-3.7.9 ; \ - nix-env --set-flag priority 6 python3-3.7.9 ; \ - nix-env -iP python3-3.6.12 ; \ - nix-env --set-flag priority 7 python3-3.6.12 ; \ + nix-env -iP python3-3.6.11 ; \ + nix-env --set-flag priority 8 python3-3.6.11 ; \ + nix-env -iP python3-3.7.8 ; \ + nix-env --set-flag priority 7 python3-3.7.8 ; \ + nix-env -iP python3-3.9.0a4 ; \ + nix-env --set-flag priority 6 python3-3.9.0a4 ; \ fi # download monero tests binary