Skip to content

Commit

Permalink
feat: Update poetry to 1.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
saattrupdan committed Feb 8, 2024
1 parent 210200f commit 040f850
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion {{cookiecutter.project_name}}/makefile
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ install-pipx:
pipx ensurepath --force; \
echo "Installed pipx."; \
fi
{{'\ninstall-poetry:\n\t@if [ ! "$(shell poetry --version)" = "Poetry (version 1.5.1)" ]; then \\\n python3 -m pip uninstall -y poetry poetry-core poetry-plugin-export; \\\n pipx install --force poetry==1.5.1; \\\n echo "Installed Poetry."; \\\n fi\n' if cookiecutter.dependency_manager != 'pip'}}
{{'\ninstall-poetry:\n\t@if [ ! "$(shell poetry --version)" = "Poetry (version 1.7.1)" ]; then \\\n python3 -m pip uninstall -y poetry poetry-core poetry-plugin-export; \\\n pipx install --force poetry==1.7.1; \\\n echo "Installed Poetry."; \\\n fi\n' if cookiecutter.dependency_manager != 'pip'}}
install-dependencies:
{{'@poetry env use python' if cookiecutter.dependency_manager != 'pip' else '@python'}}{{cookiecutter.python_version}}{{' && poetry install' if cookiecutter.dependency_manager != 'pip' else ' -m venv .venv\n\t@. .venv/bin/activate && pip install -qU pip && pip install -qe .[dev]'}}

Expand Down

0 comments on commit 040f850

Please sign in to comment.