Skip to content

Commit

Permalink
🐛 Rollback install-poetry.py migration
Browse files Browse the repository at this point in the history
Until python-poetry/poetry#3870 is resolved.

Original commit: 8c59f3e
  • Loading branch information
TeoZosa committed May 26, 2021
1 parent caad497 commit c578af1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion {{cookiecutter.project_slug}}/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ ENV POETRY_HOME=/opt/poetry \
POETRY_VIRTUALENVS_CREATE=false
ENV PATH="${POETRY_HOME}/bin:${PATH}"
# Install `poetry` via `curl` and system `python`
RUN curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/install-poetry.py | python && \
RUN curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python && \
poetry --version && \
poetry config --list
{% if cookiecutter.jupyter_notebook_support == 'yes' %}
Expand Down
2 changes: 1 addition & 1 deletion {{cookiecutter.project_slug}}/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ ifeq ($(shell command -v poetry),)
@echo "poetry could not be found!"
@echo "Please install poetry!"
@echo "Ex.: 'curl -sSL \
https://raw.githubusercontent.com/python-poetry/poetry/master/install-poetry.py | python - \
https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python - \
&& source $$HOME/.local/env'"
@echo "see:"
@echo "- https://python-poetry.org/docs/#installation"
Expand Down

0 comments on commit c578af1

Please sign in to comment.