Skip to content

Commit

Permalink
CI: Allow passing pre-release Python versions to setup-python (#10)
Browse files Browse the repository at this point in the history
This allows Python 3.13, which is now in release candidate phase, to also be setup.
  • Loading branch information
EwoutH authored Sep 9, 2024
1 parent 6815800 commit 47d5f47
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/test-dependents.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: ${{ inputs.python-version }}
allow-prereleases: true

- name: Setup Headless Display
if: ${{ inputs.qt != '' }}
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/test-pyrepo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ jobs:
python-version: ${{ inputs.python-version }}
cache-dependency-path: ${{ inputs.python-cache-dependency-path }}
cache: pip
allow-prereleases: true

- run: python -m pip install --upgrade pip

Expand Down
1 change: 1 addition & 0 deletions .github/workflows/upload-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: 3.x
allow-prereleases: true

- name: Install coverage
run: pip install coverage
Expand Down

0 comments on commit 47d5f47

Please sign in to comment.