Skip to content
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

allow prerelease Python versions for all setup steps in GHA #110

Merged
merged 2 commits into from
Aug 5, 2024
Merged
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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [Unreleased]

### Changed

- Added `allow-prereleases: true` to all Python setup steps in GitHub Actions workflows. This should allow for easy testing of future, unreleased versions of Python.

## [2024.25]

### Added
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: "{{ python_max_version }}"
allow-prereleases: true

- name: Install dependencies
run: |
Expand Down
3 changes: 3 additions & 0 deletions src/django_twc_package/.github/workflows/test.yml.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: "{{ python_min_version }}"
allow-prereleases: true

- name: Install dependencies
run: |
Expand Down Expand Up @@ -79,6 +80,7 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: "{{ python_max_version }}"
allow-prereleases: true

- name: Install dependencies
run: |
Expand All @@ -97,6 +99,7 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: "{{ python_min_version }}"
allow-prereleases: true

- name: Install dependencies
run: |
Expand Down