Skip to content

Commit e11b053

Browse files
committed
drop python 3.8
1 parent a6916b4 commit e11b053

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
## 3.0.8 (release date: TBD)
22
* Upgraded to Ruby 3.3.5
33
* Added a Python 3.13 image
4+
* Dropped Python 3.8 image
45

56
## 3.0.7 (release date: 2024-07-30)
67
* Upgraded to Ruby 3.3.4

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ FORCE:
4242
# when adding a cRuby image, also update image/nginx-passenger.sh and image/ruby-support/finalize.sh
4343
SPECIAL_IMAGES := customizable full
4444
CRUBY_IMAGES := ruby31 ruby32 ruby33
45-
PYTHON_IMAGES := python38 python39 python310 python311 python312 python313
45+
PYTHON_IMAGES := python39 python310 python311 python312 python313
4646
MISC_IMAGES := jruby93 jruby94 nodejs
4747

4848
ALL_IMAGES := $(SPECIAL_IMAGES) $(MISC_IMAGES) $(CRUBY_IMAGES) $(PYTHON_IMAGES)

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,6 @@ Passenger-docker consists of several images, each one tailor made for a specific
137137

138138
Python images
139139

140-
* `phusion/passenger-python38` - Python 3.8
141140
* `phusion/passenger-python39` - Python 3.9
142141
* `phusion/passenger-python310` - Python 3.10
143142
* `phusion/passenger-python311` - Python 3.11
@@ -184,11 +183,11 @@ FROM phusion/passenger-full:<VERSION>
184183
#FROM phusion/passenger-ruby31:<VERSION>
185184
#FROM phusion/passenger-ruby32:<VERSION>
186185
#FROM phusion/passenger-ruby33:<VERSION>
187-
#FROM phusion/passenger-python38:<VERSION>
188186
#FROM phusion/passenger-python39:<VERSION>
189187
#FROM phusion/passenger-python310:<VERSION>
190188
#FROM phusion/passenger-python311:<VERSION>
191189
#FROM phusion/passenger-python312:<VERSION>
190+
#FROM phusion/passenger-python313:<VERSION>
192191
#FROM phusion/passenger-jruby93:<VERSION>
193192
#FROM phusion/passenger-jruby94:<VERSION>
194193
#FROM phusion/passenger-nodejs:<VERSION>
@@ -844,11 +843,11 @@ Build one of the images:
844843
make build_ruby31
845844
make build_ruby32
846845
make build_ruby33
847-
make build_python38
848846
make build_python39
849847
make build_python310
850848
make build_python311
851849
make build_python312
850+
make build_python313
852851
make build_jruby93
853852
make build_jruby94
854853
make build_nodejs

image/install_image.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ if [[ "$jruby95" = 1 ]]; then run /pd_build/jruby-9.5.*.sh; fi
1515
if [[ "$nodejs" = 1 ]]; then run /pd_build/nodejs.sh; fi
1616
if [[ "$redis" = 1 ]]; then run /pd_build/redis.sh; fi
1717
if [[ "$memcached" = 1 ]]; then run /pd_build/memcached.sh; fi
18-
if [[ "$python38" = 1 ]]; then run /pd_build/python.sh 3.8; fi
1918
if [[ "$python39" = 1 ]]; then run /pd_build/python.sh 3.9; fi
2019
if [[ "$python310" = 1 ]]; then run /pd_build/python.sh 3.10; fi
2120
if [[ "$python311" = 1 ]]; then run /pd_build/python.sh 3.11; fi
2221
if [[ "$python312" = 1 ]]; then run /pd_build/python.sh 3.12; fi
2322
if [[ "$python313" = 1 ]]; then run /pd_build/python.sh 3.13; fi
23+
if [[ "$python314" = 1 ]]; then run /pd_build/python.sh 3.14; fi
2424

2525
# Must be installed after Ruby, so that we don't end up with two Ruby versions.
2626
run /pd_build/nginx-passenger.sh

0 commit comments

Comments
 (0)