diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 8e5f712..5debb6d 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -32,10 +32,10 @@ jobs: miniforge-variant: Mambaforge - name: Install and set config poetry - run: | - curl -sSL https://install.python-poetry.org/ | python - - export PATH="$HOME/.poetry/bin:$PATH" - poetry config virtualenvs.create false + run: | + export PATH="$HOME/.poetry/bin:$PATH" + curl -sSL https://install.python-poetry.org/ | python - + poetry config virtualenvs.create false - name: Install main dependencies run: | diff --git a/Makefile b/Makefile index 074cbea..5eb5506 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,7 @@ SHELL := /usr/bin/env bash PYTHON := python PYTHONPATH := ${PWD} +ENVCREATE:= .PHONY: clean clean-test clean-pyc clean-build help @@ -35,7 +36,6 @@ SEMANTIC_RELEASE = npx --yes \ -p "semantic-release-replace-plugin" \ semantic-release -ENVCREATE:= # Create a Conda environment and install dependencies for development. .PHONY: conda-env