From ecd0232c69545872875d225721c9033b1442ac24 Mon Sep 17 00:00:00 2001 From: Glyph Date: Sat, 28 Oct 2023 16:13:58 -0700 Subject: [PATCH] install required pep517 dependency --- .github/workflows/ci.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 7d0bb11..0f03265 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -173,7 +173,9 @@ jobs: - name: Check matched tag version and branch version - on tag if: startsWith(github.ref, 'refs/tags/') - run: python admin/check_tag_version_match.py "${{ github.ref }}" + run: | + python -Im pip install --upgrade pep517 + python admin/check_tag_version_match.py "${{ github.ref }}" - name: Publish to PyPI - on tag if: startsWith(github.ref, 'refs/tags/')