Skip to content

Commit fcafda6

Browse files
committed
Upgrade to real python 3.14, from rc
1 parent 1374aef commit fcafda6

File tree

3 files changed

+1
-12
lines changed

3 files changed

+1
-12
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
- name: Set up Python 3.14
6868
uses: actions/setup-python@v6
6969
with:
70-
python-version: '3.14.0-rc.3'
70+
python-version: '3.14'
7171

7272
- name: Install apt stuff and other dependencies
7373
shell: bash

tests/test_chapter_09_docker.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,6 @@ def test_listings_and_commands_and_output(self):
3131
self.sourcetree.run_command("./manage.py migrate --noinput")
3232
self.sourcetree.run_command("./manage.py collectstatic --noinput")
3333

34-
# Hack to be able to pretend that 3.14 is out and we dont have to use the rc
35-
self.sourcetree.run_command("docker pull python:3.14-rc-slim")
36-
self.sourcetree.run_command("docker tag python:3.14-rc-slim python:3.14-slim")
37-
3834
# hack fast-forward
3935
self.skip_forward_if_skipto_set()
4036

tests/test_chapter_10_production_readiness.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,6 @@ def test_listings_and_commands_and_output(self):
2929
self.skip_with_check(57, "Change the file to be group-writeable as well")
3030
self.skip_with_check(61, "note container id")
3131

32-
# Hack to be able to pretend that 3.14 is out and we dont have to use the rc
33-
# TODO: remove me when real 3.14 is out.
34-
self.sourcetree.run_command("docker pull python:3.14-rc-slim")
35-
self.sourcetree.run_command("docker tag python:3.14-rc-slim python:3.14-slim")
36-
3732
# hack fast-forward, nu way
3833
self.skip_forward_if_skipto_set()
3934

@@ -48,8 +43,6 @@ def test_listings_and_commands_and_output(self):
4843
"Django==5.2",
4944
"gunicorn==2",
5045
"whitenoise==6.",
51-
# TODO: remove me when real 3.14 is out, and have fed thru cherry-picks
52-
"python:3.14-slim",
5346
]
5447
)
5548
self.assert_all_listings_checked(self.listings)

0 commit comments

Comments
 (0)