Skip to content

Commit fa4a7e8

Browse files
committed
Allow Python prereleases in CI testing
1 parent c2abad8 commit fa4a7e8

7 files changed

+7
-0
lines changed

.github/workflows/first_startup.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ jobs:
4040
uses: actions/setup-python@v5
4141
with:
4242
python-version: ${{ matrix.python-version }}
43+
allow-prereleases: true
4344
cache: 'pip'
4445
cache-dependency-path: 'galaxy root/requirements.txt'
4546
- name: Get full Python version

.github/workflows/lint.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ jobs:
3232
- uses: actions/setup-python@v5
3333
with:
3434
python-version: ${{ matrix.python-version }}
35+
allow-prereleases: true
3536
cache: 'pip'
3637
cache-dependency-path: |
3738
${{ env.LINT_PATH }}

.github/workflows/lint_openapi_schema.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ jobs:
3333
- uses: actions/setup-python@v5
3434
with:
3535
python-version: ${{ matrix.python-version }}
36+
allow-prereleases: true
3637
cache: 'pip'
3738
cache-dependency-path: 'galaxy root/requirements.txt'
3839
- name: Get full Python version

.github/workflows/reports_startup.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ jobs:
3535
uses: actions/setup-python@v5
3636
with:
3737
python-version: ${{ matrix.python-version }}
38+
allow-prereleases: true
3839
cache: 'pip'
3940
cache-dependency-path: 'galaxy root/requirements.txt'
4041
- name: Get full Python version

.github/workflows/test_galaxy_packages.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ jobs:
3131
- uses: actions/setup-python@v5
3232
with:
3333
python-version: ${{ matrix.python-version }}
34+
allow-prereleases: true
3435
cache: 'pip'
3536
cache-dependency-path: 'galaxy root/requirements.txt'
3637
- name: Install ffmpeg

.github/workflows/toolshed.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ jobs:
4545
- uses: actions/setup-python@v5
4646
with:
4747
python-version: ${{ matrix.python-version }}
48+
allow-prereleases: true
4849
cache: 'pip'
4950
cache-dependency-path: 'galaxy root/requirements.txt'
5051
- name: Get full Python version

.github/workflows/unit.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ jobs:
3333
- uses: actions/setup-python@v5
3434
with:
3535
python-version: ${{ matrix.python-version }}
36+
allow-prereleases: true
3637
cache: 'pip'
3738
cache-dependency-path: 'galaxy root/requirements.txt'
3839
- name: Get full Python version

0 commit comments

Comments
 (0)