Skip to content

Commit

Permalink
Bump setup-python and allow pre-releases.
Browse files Browse the repository at this point in the history
  • Loading branch information
tim-schilling committed Sep 30, 2024
1 parent 2cb4c9f commit bfc4f52
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codecov.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/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: "3.10.5"
- name: Install poetry
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish_to_pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.8
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: 3.8
- name: Install poetry
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: "3"
- uses: actions/cache@v3
Expand All @@ -37,8 +37,8 @@ jobs:
# It's not worth it to run the full test suite
# with the bleeding-edge versions. When we drop 3.8
# we can move this up into the matrix.
- django-version: 5.1
python-version: "3.13.0rc2"
- python-version: "3.13.0rc2"
django-version: 5.1
drf-version: "3.13"
exclude:
# Python 3.8 is incompatible with Django v5+
Expand All @@ -55,9 +55,10 @@ jobs:
python-version: 3.9
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- uses: snok/install-poetry@v1
with:
virtualenvs-in-project: true
Expand Down

0 comments on commit bfc4f52

Please sign in to comment.