Skip to content

Commit

Permalink
ci.yml Use quotes around python versions
Browse files Browse the repository at this point in the history
version 3.10 was interpreted as 3.1.

Per actions/setup-python#160
use quotes around versions
to get around yaml limitation
  • Loading branch information
jombr committed Apr 15, 2024
1 parent 76b5bb9 commit 95086ea
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
python: [3.8, 3.9, 3.10, 3.11, 3.12]
python: ['3.8', '3.9', '3.10', '3.11', '3.12']
include:
- os: macos-latest
python: 3.12
python: '3.12'
- os: windows-latest
python: 3.12
python: '3.12'

runs-on: ${{ matrix.os }}

Expand Down Expand Up @@ -45,7 +45,7 @@ jobs:
- name: Set up Python 3.12
uses: actions/setup-python@v1
with:
python: 3.12
python: '3.12'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit 95086ea

Please sign in to comment.