Skip to content

Commit

Permalink
Make default python version 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
dhlavac committed Feb 7, 2024
1 parent 3fc8690 commit cbda29f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Bind kubeconfig to /opt/kubeconfig \
Bind a dir to /test-run-results to get reports \
Set NAMESPACE env variable"

ARG cacert=https://password.corp.redhat.com/RH-IT-Root-CA.crt
ARG cacert=https://certs.corp.redhat.com/certs/Current-IT-Root-CAs.pem

USER root

Expand All @@ -20,7 +20,7 @@ RUN curl https://mirror.openshift.com/pub/openshift-v4/clients/ocp/stable-4.12/o
RUN curl -L https://github.com/cloudflare/cfssl/releases/download/v1.6.1/cfssl_1.6.1_linux_amd64 >/usr/local/bin/cfssl && \
chmod +x /usr/local/bin/cfssl

RUN yum install -y python3.9 pip make gettext && \
RUN yum install -y python3.11 pip make gettext && \
yum clean all

RUN pip3 --no-cache-dir install pipenv
Expand Down
2 changes: 1 addition & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -64,4 +64,4 @@ pytest-html = "*"
ansi2html = "*"

[requires]
python_version = "3"
python_version = "3.11"

0 comments on commit cbda29f

Please sign in to comment.