-
- Downloads
Use Python 3.10 as the default Python version for new apps (#1296)
Previously if a new app did not specify a Python version via a `runtime.txt` or the appropriate `Pipfile` config option, then the buildpack would default to the latest Python 3.9 release (currently Python 3.9.11). Now the buildpack will use the latest Python 3.10 release (currently Python 3.10.3). This does not affect: * apps that specify an explicit Python version * existing apps that have already had a build using the previous default version (since that version is remembered from one build to the next, via the "sticky versions" feature). Use-cases involving new apps that aren't compatible with Python 3.10 will now need to specify Python 3.9 explicitly: https://devcenter.heroku.com/articles/python-support#specifying-a-python-version GUS-W-10881777.
Showing
- CHANGELOG.md 1 addition, 0 deletionsCHANGELOG.md
- README.md 1 addition, 1 deletionREADME.md
- bin/default_pythons 1 addition, 1 deletionbin/default_pythons
- spec/fixtures/ci_nose/runtime.txt 1 addition, 0 deletionsspec/fixtures/ci_nose/runtime.txt
- spec/fixtures/pipenv_and_requirements_txt/Pipfile 1 addition, 1 deletionspec/fixtures/pipenv_and_requirements_txt/Pipfile
- spec/fixtures/pipenv_and_requirements_txt/Pipfile.lock 2 additions, 2 deletionsspec/fixtures/pipenv_and_requirements_txt/Pipfile.lock
- spec/fixtures/pipenv_and_runtime_txt/runtime.txt 1 addition, 1 deletionspec/fixtures/pipenv_and_runtime_txt/runtime.txt
- spec/fixtures/pipenv_lockfile_out_of_sync/Pipfile 1 addition, 1 deletionspec/fixtures/pipenv_lockfile_out_of_sync/Pipfile
- spec/fixtures/pipenv_python_full_version/Pipfile 1 addition, 1 deletionspec/fixtures/pipenv_python_full_version/Pipfile
- spec/fixtures/pipenv_python_full_version/Pipfile.lock 5 additions, 5 deletionsspec/fixtures/pipenv_python_full_version/Pipfile.lock
- spec/fixtures/runtime_txt_only/runtime.txt 1 addition, 1 deletionspec/fixtures/runtime_txt_only/runtime.txt
- spec/fixtures/runtime_txt_with_stray_whitespace/runtime.txt 1 addition, 1 deletionspec/fixtures/runtime_txt_with_stray_whitespace/runtime.txt
- spec/hatchet/pipenv_spec.rb 8 additions, 8 deletionsspec/hatchet/pipenv_spec.rb
- spec/hatchet/python_version_spec.rb 5 additions, 5 deletionsspec/hatchet/python_version_spec.rb
- spec/spec_helper.rb 1 addition, 1 deletionspec/spec_helper.rb
Loading
Please register or sign in to comment