From b7985068207f10a435d59adaadc1117860c383c8 Mon Sep 17 00:00:00 2001 From: Jac Fitzgerald Date: Sat, 18 Jun 2022 14:32:04 -0700 Subject: [PATCH 1/2] indenting --- .github/workflows/publish-pypi.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish-pypi.yml b/.github/workflows/publish-pypi.yml index 260c18f..314e3ce 100644 --- a/.github/workflows/publish-pypi.yml +++ b/.github/workflows/publish-pypi.yml @@ -30,7 +30,7 @@ jobs: test-deploy: - if: github.ref_type == 'tag' && contains(github.ref_name, 'test') + if: github.ref_type == 'tag' && contains(github.ref_name, 'test') needs: build environment: name: test-pypi @@ -53,4 +53,4 @@ jobs: uses: pypa/gh-action-pypi-publish@master with: password: ${{ secrets.PYPI_API_TOKEN }} - repository_url: https://pypi.org/legacy/ \ No newline at end of file + repository_url: https://pypi.org/legacy/ From e880e85df4c4a88fa77df0b56198d85827b3c5c9 Mon Sep 17 00:00:00 2001 From: Jac Fitzgerald Date: Sat, 18 Jun 2022 14:37:20 -0700 Subject: [PATCH 2/2] use strings for 3.10 --- .github/workflows/python-package.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 014a1d5..4bd171f 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -17,7 +17,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [3.7, 3.8, 3.9, 3.10] + python-version: [3.7, 3.8, 3.9, '3.10'] steps: - uses: actions/checkout@v2