Skip to content

Commit 13b3cb2

Browse files
committed
specify py version as string in workflow
1 parent 3bda03b commit 13b3cb2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
max-parallel: 3
1010
matrix:
11-
python-version: [3.6, 3.7, 3.8, 3.9, 3.10]
11+
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
1212
steps:
1313
- name: install ffmpeg and gifsicle
1414
run: sudo apt update && sudo apt install ffmpeg gifsicle
@@ -43,7 +43,7 @@ jobs:
4343
- name: Set up Python 3.8
4444
uses: actions/setup-python@v1
4545
with:
46-
python-version: 3.8
46+
python-version: "3.8"
4747
- name: Install dependencies
4848
run: |
4949
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)