From 5c47eb063c1eb20ff319c353cc6af5ae6892b16d Mon Sep 17 00:00:00 2001 From: Andrew Senetar Date: Sat, 6 Apr 2024 16:48:35 -0700 Subject: [PATCH] fix(ci): Use alternative setup-python to allow 2.7 The setup python action has removed 2.7, we want to keep it for the moment. Using an alternative action that supports 2.7. --- .github/workflows/default.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/default.yml b/.github/workflows/default.yml index f824fe4..b2a742a 100644 --- a/.github/workflows/default.yml +++ b/.github/workflows/default.yml @@ -46,7 +46,7 @@ jobs: python-version: 2.7 # - os: macos-latest # python-version: 3.11 - # - os: macos-latest + # - os: macos-latestgit push # python-version: 3.8 # - os: macos-latest # python-version: 2.7 @@ -60,7 +60,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v5 + uses: LizardByte/setup-python-action@master with: python-version: ${{ matrix.python-version }} - name: Install dependencies