Skip to content

python: requirements: update Pillow, Sphinx #512

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
supported-reqs:

name: 'Supported scripts/requirements.txt'
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04

steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:

deploy:
needs: supported-reqs
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/publish' }}
steps:
# download the build result from the same workflow
Expand All @@ -102,7 +102,7 @@ jobs:

lax:
name: "PIP_IGNORE_INSTALLED=0 requirements-lax.txt"
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
# Makefile downgrades the Sphinx warnings, they are not errors any more
env: {LAX: 1}
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/woke.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ on:
jobs:
woke:
name: woke check for all file
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v3
- name: woke
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/woke_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ on:
jobs:
woke_pr:
name: woke check for patch
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v3
- uses: get-woke/woke-action-reviewdog@v0
Expand Down
10 changes: 6 additions & 4 deletions scripts/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
# This file hardcodes validated versions with '==',
# see requirements-lax.txt for an alternative.

sphinx>=7
sphinx>=8.2.1
breathe
docutils
plantuml
sphinx_rtd_theme
sphinxcontrib-jquery
sphinxcontrib-plantuml
sphinxcontrib-applehelp


# blockdiag is orphaned and not compatible with pillow>=10,
# blockdiag is orphaned and not compatible with pillow 10,
# see https://github.com/thesofproject/sof-docs/issues/472
# however it is compatible with pillow 11.1
sphinxcontrib-blockdiag
pillow<10
pillow>=11.1
Loading