From 1fd2ffd87b31cd27cf7994a752f9562e8a62a467 Mon Sep 17 00:00:00 2001 From: n-wbrown Date: Tue, 17 Oct 2023 13:44:29 -0700 Subject: [PATCH] CI: syntax fix --- .github/workflows/cookiecutter-test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cookiecutter-test.yml b/.github/workflows/cookiecutter-test.yml index 22b2d9a..d84da7e 100644 --- a/.github/workflows/cookiecutter-test.yml +++ b/.github/workflows/cookiecutter-test.yml @@ -41,7 +41,7 @@ jobs: strategy: matrix: config_file: [ default_config.yaml, complex_config.yaml] - python_version: [ 3.6, 3.7, 3.8, 3.9, 3.10] + python_version: [ "3.6", "3.7", "3.8", "3.9", "3.10"] steps: @@ -51,7 +51,7 @@ jobs: - uses: actions/setup-python@v4 with: - python-version: "${{ matrix.python_version }}" + python-version: ${{ matrix.python_version }} - name: Upgrade pip run: |