Skip to content

Commit

Permalink
馃挌 Python versions should be specified as strings
Browse files Browse the repository at this point in the history
  • Loading branch information
klieret committed Aug 10, 2022
1 parent d94e035 commit 39aaa21
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/testing.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,15 +47,15 @@ jobs:
strategy:
matrix:
os: [ubuntu, windows, macos]
python-version: [3.7, 3.8, 3.9, 3.10]
python-version: ['3.7', '3.8', '3.9', '3.10']
include:
- python-version: 3.7
- python-version: '3.7'
artifact: ankipandas-*.whl
- python-version: 3.8
- python-version: '3.8'
artifact: ankipandas-*.whl
- python-version: 3.9
- python-version: '3.9'
artifact: ankipandas-*.tar.gz
- python-version: 3.10
- python-version: '3.10'
artifact: ankipandas-*.tar.gz

steps:
Expand Down

0 comments on commit 39aaa21

Please sign in to comment.