Skip to content

Commit

Permalink
WIP: Use latest deadsnakes/action version and revert change to python…
Browse files Browse the repository at this point in the history
… versions
  • Loading branch information
JonathonReinhart committed Jul 6, 2023
1 parent 166a5af commit b0063fc
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
python-version: ["3.5", "3.6", "3.7"]
fail-fast: False

steps:
Expand All @@ -20,8 +20,11 @@ jobs:
# https://github.com/actions/checkout#fetch-all-history-for-all-tags-and-branches
- run: git fetch --prune --unshallow

# We use Python from deadsnakes/action because the Python from
# actions/setup-python links witih RUNPATH which is not compatible
# with StaticX. See #224.
- name: Set up Python ${{ matrix.python-version }}
uses: deadsnakes/action@v2.1.1
uses: deadsnakes/action@v3.0.1
with:
python-version: ${{ matrix.python-version }}

Expand Down

0 comments on commit b0063fc

Please sign in to comment.