Skip to content

Commit 612955a

Browse files
committed
Project: Updated deprecated Poetry installation command
1 parent d0f0102 commit 612955a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ sudo apt install make build-essential libssl-dev zlib1g-dev libbz2-dev libreadli
5757
pyenv install 3.9.0
5858
pyenv global 3.9.0
5959

60-
curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python3
60+
curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/install-poetry.py | python -
6161
poetry shell
6262
poetry install
6363

fabfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ def setup(connection: fabric.Connection) -> None:
9595
execute(connection, f'mkdir -p {GlobalConfig.project_path}/{GlobalConfig.project_name}')
9696
execute(connection, f'ln -s {GlobalConfig.project_path}/{GlobalConfig.project_name} {GlobalConfig.project_name}')
9797

98-
execute(connection, 'curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python')
98+
execute(connection, 'curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/install-poetry.py | python -')
9999

100100

101101
@fabric.task(pre=[configure], hosts=[GlobalConfig.host], help={'filename': 'An optional filename to deploy to the server'})

0 commit comments

Comments
 (0)