Skip to content

Commit 770a9bb

Browse files
committed
Removed support for Python 3.11
1 parent 2c1a5de commit 770a9bb

File tree

9 files changed

+0
-46
lines changed

9 files changed

+0
-46
lines changed

os/centos10/Dockerfile

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -114,11 +114,6 @@ RUN git pull && hash -r
114114
WORKDIR $HOME
115115

116116
ENV PATH="$HOME/.pyenv/bin:$HOME/.pyenv/shims:$PATH"
117-
# Python 3.11.14
118-
RUN pyenv install 3.11.14 && \
119-
pyenv global 3.11.14 && \
120-
pip install -U pip
121-
RUN pyenv global system || echo "No default system version of Python. Sticking to 3.11.14"
122117
# Python 3.12.12
123118
RUN pyenv install 3.12.12 && \
124119
pyenv global 3.12.12 && \

os/centos9/Dockerfile

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -108,11 +108,6 @@ RUN git pull && hash -r
108108
WORKDIR $HOME
109109

110110
ENV PATH="$HOME/.pyenv/bin:$HOME/.pyenv/shims:$PATH"
111-
# Python 3.11.14
112-
RUN pyenv install 3.11.14 && \
113-
pyenv global 3.11.14 && \
114-
pip install -U pip
115-
RUN pyenv global system || echo "No default system version of Python. Sticking to 3.11.14"
116111
# Python 3.12.12
117112
RUN pyenv install 3.12.12 && \
118113
pyenv global 3.12.12 && \

os/debian12/Dockerfile

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -111,11 +111,6 @@ RUN git pull
111111
WORKDIR $HOME
112112

113113
ENV PATH="$HOME/.pyenv/bin:$HOME/.pyenv/shims:$PATH"
114-
# Python 3.11.14
115-
RUN pyenv install 3.11.14 && \
116-
pyenv global 3.11.14 && \
117-
pip install -U pip
118-
RUN pyenv global system || echo "No default system version of Python. Sticking to 3.11.14"
119114
# Python 3.12.12
120115
RUN pyenv install 3.12.12 && \
121116
pyenv global 3.12.12 && \

os/debian13/Dockerfile

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -111,11 +111,6 @@ RUN git pull
111111
WORKDIR $HOME
112112

113113
ENV PATH="$HOME/.pyenv/bin:$HOME/.pyenv/shims:$PATH"
114-
# Python 3.11.14
115-
RUN pyenv install 3.11.14 && \
116-
pyenv global 3.11.14 && \
117-
pip install -U pip
118-
RUN pyenv global system || echo "No default system version of Python. Sticking to 3.11.14"
119114
# Python 3.12.12
120115
RUN pyenv install 3.12.12 && \
121116
pyenv global 3.12.12 && \

os/rocky10/Dockerfile

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -111,11 +111,6 @@ RUN git pull && hash -r
111111
WORKDIR $HOME
112112

113113
ENV PATH="$HOME/.pyenv/bin:$HOME/.pyenv/shims:$PATH"
114-
# Python 3.11.14
115-
RUN pyenv install 3.11.14 && \
116-
pyenv global 3.11.14 && \
117-
pip install -U pip
118-
RUN pyenv global system || echo "No default system version of Python. Sticking to 3.11.14"
119114
# Python 3.12.12
120115
RUN pyenv install 3.12.12 && \
121116
pyenv global 3.12.12 && \

os/rocky9/Dockerfile

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -106,11 +106,6 @@ RUN git pull && hash -r
106106
WORKDIR $HOME
107107

108108
ENV PATH="$HOME/.pyenv/bin:$HOME/.pyenv/shims:$PATH"
109-
# Python 3.11.14
110-
RUN pyenv install 3.11.14 && \
111-
pyenv global 3.11.14 && \
112-
pip install -U pip
113-
RUN pyenv global system || echo "No default system version of Python. Sticking to 3.11.14"
114109
# Python 3.12.12
115110
RUN pyenv install 3.12.12 && \
116111
pyenv global 3.12.12 && \

os/ubuntu2004/Dockerfile

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -120,11 +120,6 @@ RUN git pull
120120
WORKDIR $HOME
121121

122122
ENV PATH="$HOME/.pyenv/bin:$HOME/.pyenv/shims:$PATH"
123-
# Python 3.11.14
124-
RUN pyenv install 3.11.14 && \
125-
pyenv global 3.11.14 && \
126-
pip install -U pip
127-
RUN pyenv global system || echo "No default system version of Python. Sticking to 3.11.14"
128123
# Python 3.12.12
129124
RUN pyenv install 3.12.12 && \
130125
pyenv global 3.12.12 && \

os/ubuntu2204/Dockerfile

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -121,11 +121,6 @@ RUN git pull
121121
WORKDIR $HOME
122122

123123
ENV PATH="$HOME/.pyenv/bin:$HOME/.pyenv/shims:$PATH"
124-
# Python 3.11.14
125-
RUN pyenv install 3.11.14 && \
126-
pyenv global 3.11.14 && \
127-
pip install -U pip
128-
RUN pyenv global system || echo "No default system version of Python. Sticking to 3.11.14"
129124
# Python 3.12.12
130125
RUN pyenv install 3.12.12 && \
131126
pyenv global 3.12.12 && \

os/ubuntu2404/Dockerfile

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
#
32
# Dockerfile: http://github.com/cpp-projects-showcase/docker-images/tree/main/ubuntu2404
43
# Usual Docker tag: infrahelpers/cpppython:ubuntu2404
@@ -115,11 +114,6 @@ RUN git pull
115114
WORKDIR $HOME
116115

117116
ENV PATH="$HOME/.pyenv/bin:$HOME/.pyenv/shims:$PATH"
118-
# Python 3.11.14
119-
RUN pyenv install 3.11.14 && \
120-
pyenv global 3.11.14 && \
121-
pip install -U pip
122-
RUN pyenv global system || echo "No default system version of Python. Sticking to 3.11.14"
123117
# Python 3.12.12
124118
RUN pyenv install 3.12.12 && \
125119
pyenv global 3.12.12 && \

0 commit comments

Comments
 (0)