Skip to content

Commit

Permalink
Revert to using Python 3.10 in the linting job
Browse files Browse the repository at this point in the history
This project's jobs cannot yet run under Python 3.11 or 3.12.
  • Loading branch information
jsf9k committed Aug 1, 2024
1 parent 2632478 commit 4311811
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,9 @@ jobs:
- id: setup-python
uses: actions/setup-python@v5
with:
python-version: ${{ steps.setup-env.outputs.python-version }}
# python-version: ${{ steps.setup-env.outputs.python-version }}
# This project cannot currently support Python 3.11 or 3.12.
python-version: "3.10"
# We need the Go version and Go cache location for the actions/cache step,
# so the Go installation must happen before that.
- id: setup-go
Expand Down Expand Up @@ -248,7 +250,9 @@ jobs:
- id: setup-python
uses: actions/setup-python@v5
with:
python-version: ${{ steps.setup-env.outputs.python-version }}
# python-version: ${{ steps.setup-env.outputs.python-version }}
# This project cannot currently support Python 3.11 or 3.12.
python-version: "3.10"
- uses: actions/cache@v3
env:
BASE_CACHE_KEY: "${{ github.job }}-${{ runner.os }}-\
Expand Down

0 comments on commit 4311811

Please sign in to comment.