Skip to content

Commit e0701ea

Browse files
committed
Use release version of Python 3.12
1 parent 35735c3 commit e0701ea

File tree

2 files changed

+15
-13
lines changed

2 files changed

+15
-13
lines changed

.github/workflows/reusable-docs.yml

Lines changed: 15 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -96,18 +96,22 @@ jobs:
9696
timeout-minutes: 60
9797
steps:
9898
- uses: actions/checkout@v4
99-
- uses: actions/cache@v4
99+
- name: 'Set up Python'
100+
uses: actions/setup-python@v5
100101
with:
101-
path: ~/.cache/pip
102-
key: ubuntu-doc-${{ hashFiles('Doc/requirements.txt') }}
103-
restore-keys: |
104-
ubuntu-doc-
105-
- name: 'Install Dependencies'
106-
run: sudo ./.github/workflows/posix-deps-apt.sh && sudo apt-get install wamerican
107-
- name: 'Configure CPython'
108-
run: ./configure --with-pydebug
109-
- name: 'Build CPython'
110-
run: make -j4
102+
python-version: '3.12'
103+
# - uses: actions/cache@v4
104+
# with:
105+
# path: ~/.cache/pip
106+
# key: ubuntu-doc-${{ hashFiles('Doc/requirements.txt') }}
107+
# restore-keys: |
108+
# ubuntu-doc-
109+
# - name: 'Install Dependencies'
110+
# run: sudo ./.github/workflows/posix-deps-apt.sh && sudo apt-get install wamerican
111+
# - name: 'Configure CPython'
112+
# run: ./configure --with-pydebug
113+
# - name: 'Build CPython'
114+
# run: make -j4
111115
- name: 'Install build dependencies'
112116
run: make -C Doc/ PYTHON=../python venv
113117
# Use "xvfb-run" since some doctest tests open GUI windows

Doc/requirements.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77
# won't suddenly cause build failures. Updating the version is fine as long
88
# as no warnings are raised by doing so.
99

10-
--no-binary :all:
11-
1210
sphinx~=8.0.0
1311

1412
blurb

0 commit comments

Comments
 (0)