Skip to content

Commit

Permalink
drop python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
CamJN committed Oct 14, 2024
1 parent a6916b4 commit e11b053
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## 3.0.8 (release date: TBD)
* Upgraded to Ruby 3.3.5
* Added a Python 3.13 image
* Dropped Python 3.8 image

## 3.0.7 (release date: 2024-07-30)
* Upgraded to Ruby 3.3.4
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ FORCE:
# when adding a cRuby image, also update image/nginx-passenger.sh and image/ruby-support/finalize.sh
SPECIAL_IMAGES := customizable full
CRUBY_IMAGES := ruby31 ruby32 ruby33
PYTHON_IMAGES := python38 python39 python310 python311 python312 python313
PYTHON_IMAGES := python39 python310 python311 python312 python313
MISC_IMAGES := jruby93 jruby94 nodejs

ALL_IMAGES := $(SPECIAL_IMAGES) $(MISC_IMAGES) $(CRUBY_IMAGES) $(PYTHON_IMAGES)
Expand Down
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,6 @@ Passenger-docker consists of several images, each one tailor made for a specific

Python images

* `phusion/passenger-python38` - Python 3.8
* `phusion/passenger-python39` - Python 3.9
* `phusion/passenger-python310` - Python 3.10
* `phusion/passenger-python311` - Python 3.11
Expand Down Expand Up @@ -184,11 +183,11 @@ FROM phusion/passenger-full:<VERSION>
#FROM phusion/passenger-ruby31:<VERSION>
#FROM phusion/passenger-ruby32:<VERSION>
#FROM phusion/passenger-ruby33:<VERSION>
#FROM phusion/passenger-python38:<VERSION>
#FROM phusion/passenger-python39:<VERSION>
#FROM phusion/passenger-python310:<VERSION>
#FROM phusion/passenger-python311:<VERSION>
#FROM phusion/passenger-python312:<VERSION>
#FROM phusion/passenger-python313:<VERSION>
#FROM phusion/passenger-jruby93:<VERSION>
#FROM phusion/passenger-jruby94:<VERSION>
#FROM phusion/passenger-nodejs:<VERSION>
Expand Down Expand Up @@ -844,11 +843,11 @@ Build one of the images:
make build_ruby31
make build_ruby32
make build_ruby33
make build_python38
make build_python39
make build_python310
make build_python311
make build_python312
make build_python313
make build_jruby93
make build_jruby94
make build_nodejs
Expand Down
2 changes: 1 addition & 1 deletion image/install_image.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ if [[ "$jruby95" = 1 ]]; then run /pd_build/jruby-9.5.*.sh; fi
if [[ "$nodejs" = 1 ]]; then run /pd_build/nodejs.sh; fi
if [[ "$redis" = 1 ]]; then run /pd_build/redis.sh; fi
if [[ "$memcached" = 1 ]]; then run /pd_build/memcached.sh; fi
if [[ "$python38" = 1 ]]; then run /pd_build/python.sh 3.8; fi
if [[ "$python39" = 1 ]]; then run /pd_build/python.sh 3.9; fi
if [[ "$python310" = 1 ]]; then run /pd_build/python.sh 3.10; fi
if [[ "$python311" = 1 ]]; then run /pd_build/python.sh 3.11; fi
if [[ "$python312" = 1 ]]; then run /pd_build/python.sh 3.12; fi
if [[ "$python313" = 1 ]]; then run /pd_build/python.sh 3.13; fi
if [[ "$python314" = 1 ]]; then run /pd_build/python.sh 3.14; fi

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

0 comments on commit e11b053

Please sign in to comment.