Skip to content

Commit

Permalink
Remove ambiguous floats in .yml files
Browse files Browse the repository at this point in the history
`3.8` is interpreted as a floating point number, but we view it as a
string identifier; quote all python version numbers.
  • Loading branch information
rbarrois committed Nov 8, 2021
1 parent fa092f7 commit f67ece3
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/test.yml
Expand Up @@ -14,33 +14,33 @@ jobs:
matrix:
include:
# Django 1.11: 3.4, 3.7
- python-version: 2.7
- python-version: "2.7"
django-family: 111
- python-version: 3.4
- python-version: "3.4"
django-family: 111
- python-version: 3.7
- python-version: "3.7"
django-family: 111
- python-version: pypy3
- python-version: "pypy3"
django-family: 111

# Django 2.2: 3.5, 3.7, 3.8
- python-version: 3.5
- python-version: "3.5"
django-family: 22
- python-version: 3.7
- python-version: "3.7"
django-family: 22
- python-version: 3.8
- python-version: "3.8"
django-family: 22
- python-version: pypy3
- python-version: "pypy3"
django-family: 22

# Django 3.1: Python 3.6, 3.8, 3.9
- python-version: 3.6
- python-version: "3.6"
django-family: 31
- python-version: 3.8
- python-version: "3.8"
django-family: 31
- python-version: 3.9
- python-version: "3.9"
django-family: 31
- python-version: pypy3
- python-version: "pypy3"
django-family: 31

env:
Expand Down

0 comments on commit f67ece3

Please sign in to comment.