Skip to content

Commit

Permalink
don't specify python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
i-oden committed Dec 19, 2024
1 parent 05edadd commit da84675
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 11 deletions.
6 changes: 0 additions & 6 deletions .github/workflows/docs-github-pages-cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,6 @@ jobs:
- name: Make dependencies available to Docker container
run: |
cat requirements.txt requirements-dev.txt > ./docs/requirements.txt
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.12

- name: Build the HTML documentation
uses: matthiaszepper/sphinx-action-v4@latest
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release-cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
name: Check out source-code repository

- name: Set up Python 3.12
Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:
OUT_FILE_NAME: dds_cli_ubuntu-latest_x86_64
ASSET_MIME: application/x-elf
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Python 3.9 setup
uses: actions/setup-python@v4
with:
Expand Down Expand Up @@ -124,7 +124,7 @@ jobs:
needs: build-n-publish
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- name: Make dependencies available to Docker container
run: |
cat requirements.txt requirements-dev.txt > ./docs/requirements.txt
Expand Down
4 changes: 2 additions & 2 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ pyinstaller # version not pinned due to latest used by release procedure
pylint==2.17.3
sphinx-copybutton==0.5.1
sphinxcontrib-svg2pdfconverter==1.2.2
standard-imghdr==3.13.0
legacy-cgi==2.6.1
standard-imghdr==3.13.0 # removed in python 3.13, needed for sphinx (until more stable fix)
legacy-cgi==2.6.1 # removed in python 3.13, needed for sphinx (until more stable fix)

0 comments on commit da84675

Please sign in to comment.