From 0f58f6e24dc0c86d781ec014dccab4a00946db14 Mon Sep 17 00:00:00 2001 From: Jake Callahan Date: Wed, 30 Aug 2023 11:42:25 -0400 Subject: [PATCH] Quote the version string in python-publish.yml Without the quotes, this evaluates as a float (3.1) --- .github/workflows/python-publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index ecf35cb5..eedb423d 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -12,7 +12,7 @@ jobs: strategy: matrix: # build/push in lowest support python version - python-version: [ 3.10 ] + python-version: [ "3.10" ] steps: - uses: actions/checkout@v3