From 333e273211d232350ef8476d34e58c7fc0a229e8 Mon Sep 17 00:00:00 2001 From: Tim Pansino Date: Wed, 4 Oct 2023 10:18:58 -0700 Subject: [PATCH] Update available python versions in CI --- .github/containers/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/containers/Dockerfile b/.github/containers/Dockerfile index d761b6f4ab..57d8c234c9 100644 --- a/.github/containers/Dockerfile +++ b/.github/containers/Dockerfile @@ -96,7 +96,7 @@ RUN echo 'eval "$(pyenv init -)"' >>$HOME/.bashrc && \ pyenv update # Install Python -ARG PYTHON_VERSIONS="3.10 3.9 3.8 3.7 3.11 2.7 pypy2.7-7.3.12 pypy3.8-7.3.11" +ARG PYTHON_VERSIONS="3.11 3.10 3.9 3.8 3.7 3.12 2.7 pypy2.7-7.3.12 pypy3.8-7.3.11" COPY --chown=1000:1000 --chmod=+x ./install-python.sh /tmp/install-python.sh RUN /tmp/install-python.sh && \ rm /tmp/install-python.sh