Skip to content

Commit

Permalink
Fix Py2.7 condition.
Browse files Browse the repository at this point in the history
  • Loading branch information
scoder committed Jan 28, 2024
1 parent f302f86 commit 188525b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ jobs:
exclude:
# outdated compilers and probably not worth supporting anymore
- os: windows-latest
pyversion: 2.7
pyversion: "2.7"

runs-on: ${{ matrix.os }}
env:
Expand All @@ -253,7 +253,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
# macOS has Py2.7 installed system wide
if: matrix.pyversion != "2.7"
if: matrix.pyversion != '2.7'
with:
python-version: ${{ matrix.pyversion }}

Expand Down

0 comments on commit 188525b

Please sign in to comment.