Skip to content

Commit

Permalink
Fix windows build.
Browse files Browse the repository at this point in the history
  • Loading branch information
chaseastewart committed Aug 16, 2024
1 parent 0f6c350 commit 43b6b6a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 43b6b6a

Please sign in to comment.