File tree Expand file tree Collapse file tree 2 files changed +15
-13
lines changed Expand file tree Collapse file tree 2 files changed +15
-13
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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-
1210sphinx ~= 8.0.0
1311
1412blurb
You can’t perform that action at this time.
0 commit comments