diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index eaa9aff..7ef5030 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -93,7 +93,7 @@ jobs: - name: Verify Poetry Install run: poetry --version - name: Setup Poetry Environment - run: make env PY_VERSION='${{ steps.python.outputs.python-path }}' + run: make env PY_PATH='${{ steps.python.outputs.python-path }}' - name: Verify Poetry Environment run: | actual=$(poetry run python --version) diff --git a/Makefile b/Makefile index 76edb6b..533ab6d 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ .PHONY : env update-lock install test cov type-check linting-check docs publish init update build publish .DEFAULT_GOAL := init -PY_VERSION = 3.12 +PY_PATH = 3.12 env : - poetry env use $(PY_VERSION) + poetry env use '$(PY_PATH)' update-lock : poetry lock --no-update