From f67ece3b0aaac69f4d331b213090ed78e6ba46d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Barrois?= Date: Mon, 8 Nov 2021 14:23:34 +0100 Subject: Remove ambiguous floats in .yml files `3.8` is interpreted as a floating point number, but we view it as a string identifier; quote all python version numbers. --- .github/workflows/test.yml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 67e1fbf..5101fd2 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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: -- cgit v1.2.1