Skip to content

Commit

Permalink
GitHub actions: Python versions should be strings, otherwise will be …
Browse files Browse the repository at this point in the history
…transtlated to shortest number

Example: Version `3.10` will translate to `3.1`, which is sooo historic..
By setting versions to be strings, `"3.10"` literally means `3.10`, not 3.1.
  • Loading branch information
micromoses committed Nov 27, 2022
1 parent 856c357 commit 6154589
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ jobs:
strategy:
matrix:
python-version:
- 3.7
- 3.8
- 3.9
- '3.7'
- '3.8'
- '3.9'
implementation:
- '' # CPython
- 'pypy' # PyPy
Expand Down

0 comments on commit 6154589

Please sign in to comment.