From ecd5a7036945ccdd79e3049a7f2904709544af51 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Sun, 2 Oct 2022 12:22:29 -1000 Subject: [PATCH] fix: ensure we can get the latest version in the wheels build process (#67) --- .github/workflows/ci.yml | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 19e5bbc..12f9134 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -112,11 +112,12 @@ jobs: fetch-depth: 0 ref: "main" - - name: Install poetry - run: pipx install poetry + # Used to host cibuildwheel + - name: Set up Python + uses: actions/setup-python@v4 - name: Install semantic-release - run: pipx install semantic-release + run: python -m pip install semantic-release - name: Get Release Tag id: release_tag @@ -129,10 +130,6 @@ jobs: ref: "v${{ steps.release_tag.outputs.newest_release_tag }}" fetch-depth: 0 - # Used to host cibuildwheel - - name: Set up Python - uses: actions/setup-python@v4 - - name: Install cibuildwheel run: python -m pip install cibuildwheel==2.10.2