heroku / heroku-buildpack-python

Heroku's buildpack for Python applications.
https://www.heroku.com/python
MIT License
974 stars 1.84k forks source link

Build Python 3.10 runtimes for Heroku-24 too #1579

Closed edmorley closed 5 months ago

edmorley commented 5 months ago

Expands the Heroku-24 Python version support to include Python 3.10, in addition to the existing Python 3.11 and 3.12.

This will give more Python version options to CNB users that need ARM64 support, given that it will only be available on Heroku-24+.

I've not added a changelog entry since Heroku-24 is not yet released, so no one is using it anyway, and this is covered by the existing Heroku-24 changelog entry (the previous release of the buildpack will be able to use these binaries from S3 too).

GUS-W-15571102.

edmorley commented 5 months ago

Builds triggered using:

for v in 3.10.{0..14}; do
  gh workflow run build_python_runtime.yml -F "python_version=${v}" -F "stack=heroku-24" --ref h24-python-3.10
done