-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update tests for Python 3.9 on Ubuntu 24.04
Previously Python 3.9 was only supported on the Heroku-22 stack (Ubuntu 22.04) and older, since it reaches EOL in Oct 2025. However, support for Python 3.9 on Heroku-24 (Ubuntu 24.04) was just added, by the building/uploading of the binaries in: heroku/heroku-buildpack-python#1656 As such, the tests need updating to reflect that CNB builds will no longer fail with an unavailable Python error when using Python 3.9 on `heroku/builder:24`. GUS-W-16917997.
- Loading branch information
Showing
6 changed files
with
10 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
tests/fixtures/django_staticfiles_legacy_django/.python-version
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
3.10 | ||
3.9 |
4 changes: 2 additions & 2 deletions
4
tests/fixtures/django_staticfiles_legacy_django/requirements.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# This is the oldest Django version that works on Python 3.10 (which is the | ||
# This is the oldest Django version that works on Python 3.9 (which is the | ||
# oldest Python that is available on all of our supported builders). | ||
Django==2.1.15 | ||
Django==1.8.19 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
python-3.10.0 | ||
python-3.9.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters