Skip to content

Commit 27b412a

Browse files
committed
try clearing lockfile first before installing
1 parent 07506a5 commit 27b412a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

{{ cookiecutter.repo_name }}/Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ requirements:
3030
{% elif "environment.yml" == cookiecutter.dependency_file -%}
3131
conda env update --name $(PROJECT_NAME) --file environment.yml --prune
3232
{% elif "Pipfile" == cookiecutter.dependency_file -%}
33-
pipenv install --pre --clear
33+
pipenv lock --clear
34+
pipenv install --pre
3435
{% endif %}
3536
{% endif %}
3637

0 commit comments

Comments
 (0)