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 7fe746d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .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

0 comments on commit 7fe746d

Please sign in to comment.