Skip to content

Commit 35a420e

Browse files
committed
drop python 3.9 for EOL
1 parent cda5a57 commit 35a420e

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 3.1.5 (not yet released)
2+
* Dropped Python 3.9 image (EOL: 2025-10)
3+
14
## 3.1.4 (release date: 2025-09-25)
25
* Removed JRuby 9.3 (EOL: 2023-12-31)
36
* Removed Ruby 3.1 (EOL: 2024-03-26)

Makefile

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

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

README.md

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

137137
Python images
138138

139-
* `phusion/passenger-python39` - Python 3.9
140139
* `phusion/passenger-python310` - Python 3.10
141140
* `phusion/passenger-python311` - Python 3.11
142141
* `phusion/passenger-python312` - Python 3.12
@@ -182,7 +181,6 @@ FROM phusion/passenger-full:<VERSION>
182181
#FROM phusion/passenger-ruby32:<VERSION>
183182
#FROM phusion/passenger-ruby33:<VERSION>
184183
#FROM phusion/passenger-ruby34:<VERSION>
185-
#FROM phusion/passenger-python39:<VERSION>
186184
#FROM phusion/passenger-python310:<VERSION>
187185
#FROM phusion/passenger-python311:<VERSION>
188186
#FROM phusion/passenger-python312:<VERSION>
@@ -836,7 +834,6 @@ Build one of the images:
836834
make build_ruby32
837835
make build_ruby33
838836
make build_ruby34
839-
make build_python39
840837
make build_python310
841838
make build_python311
842839
make build_python312

image/install_image.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ if [[ "$jruby100" = 1 ]]; then run /pd_build/jruby-10.0.*.sh; fi
1414
if [[ "$nodejs" = 1 ]]; then run /pd_build/nodejs.sh; fi
1515
if [[ "$redis" = 1 ]]; then run /pd_build/redis.sh; fi
1616
if [[ "$memcached" = 1 ]]; then run /pd_build/memcached.sh; fi
17-
if [[ "$python39" = 1 ]]; then run /pd_build/python.sh 3.9; fi
1817
if [[ "$python310" = 1 ]]; then run /pd_build/python.sh 3.10; fi
1918
if [[ "$python311" = 1 ]]; then run /pd_build/python.sh 3.11; fi
2019
if [[ "$python312" = 1 ]]; then run /pd_build/python.sh 3.12; fi

0 commit comments

Comments
 (0)