Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
python-poetry
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open
python-poetry
Commits
8786f1de
Commit
8786f1de
authored
Nov 12, 2021
by
Arun Babu Neelicattu
Committed by
Bjorn Neergaard
Nov 12, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
installer: replace with install.python-poetry.org
parent
315f9e4d
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
13 additions
and
8 deletions
+13
-8
.cirrus.yml
+1
-2
.github/workflows/main.yml
+1
-2
README.md
+2
-2
docs/_index.md
+2
-2
install-poetry.py
+7
-0
No files found.
.cirrus.yml
View file @
8786f1de
...
@@ -19,8 +19,7 @@ test_task:
...
@@ -19,8 +19,7 @@ test_task:
env_script
:
env_script
:
-
echo "PATH=/.local/bin:${PATH}" >> $CIRRUS_ENV
-
echo "PATH=/.local/bin:${PATH}" >> $CIRRUS_ENV
poetry_script
:
poetry_script
:
-
curl -sL https://raw.githubusercontent.com/python-poetry/poetry/master/install-poetry.py \
-
curl -sL https://install.python-poetry.org | $PYTHON - -y
| $PYTHON - -y
-
poetry config virtualenvs.in-project
true
-
poetry config virtualenvs.in-project
true
test_script
:
test_script
:
-
poetry install
-
poetry install
...
...
.github/workflows/main.yml
View file @
8786f1de
...
@@ -48,8 +48,7 @@ jobs:
...
@@ -48,8 +48,7 @@ jobs:
-
name
:
Bootstrap poetry
-
name
:
Bootstrap poetry
shell
:
bash
shell
:
bash
run
:
|
run
:
|
curl -sL https://raw.githubusercontent.com/python-poetry/poetry/master/install-poetry.py \
curl -sL https://install.python-poetry.org | python - -y ${{ matrix.bootstrap-args }}
| python - -y ${{ matrix.bootstrap-args }}
-
name
:
Update PATH
-
name
:
Update PATH
if
:
${{ matrix.os != 'Windows' }}
if
:
${{ matrix.os != 'Windows' }}
...
...
README.md
View file @
8786f1de
...
@@ -19,11 +19,11 @@ from the rest of your system.
...
@@ -19,11 +19,11 @@ from the rest of your system.
### osx / linux / bashonwindows install instructions
### osx / linux / bashonwindows install instructions
```
bash
```
bash
curl
-sSL
https://
raw.githubusercontent.com/python-poetry/poetry/master/install-poetry.py
| python -
curl
-sSL
https://
install.python-poetry.org
| python -
```
```
### windows powershell install instructions
### windows powershell install instructions
```
powershell
```
powershell
(
Invoke-WebRequest
-Uri https://
raw.githubusercontent.com/python-poetry/poetry/master/install-poetry.py
-UseBasicParsing
)
.Content | python -
(
Invoke-WebRequest
-Uri https://
install.python-poetry.org
-UseBasicParsing
)
.Content | python -
```
```
**Warning**
: The previous
`get-poetry.py`
installer is now deprecated, if you are currently using it
**Warning**
: The previous
`get-poetry.py`
installer is now deprecated, if you are currently using it
...
...
docs/_index.md
View file @
8786f1de
...
@@ -28,11 +28,11 @@ from the rest of your system.
...
@@ -28,11 +28,11 @@ from the rest of your system.
### osx / linux / bashonwindows install instructions
### osx / linux / bashonwindows install instructions
```
bash
```
bash
curl
-sSL
https://
raw.githubusercontent.com/python-poetry/poetry/master/install-poetry.py
| python -
curl
-sSL
https://
install.python-poetry.org
| python -
```
```
### windows powershell install instructions
### windows powershell install instructions
```
powershell
```
powershell
(
Invoke-WebRequest
-Uri https://
raw.githubusercontent.com/python-poetry/poetry/master/install-poetry.py
-UseBasicParsing
)
.Content | python -
(
Invoke-WebRequest
-Uri https://
install.python-poetry.org
-UseBasicParsing
)
.Content | python -
```
```
{{% warning %}}
{{% warning %}}
...
...
install-poetry.py
View file @
8786f1de
...
@@ -890,4 +890,11 @@ def main():
...
@@ -890,4 +890,11 @@ def main():
if
__name__
==
"__main__"
:
if
__name__
==
"__main__"
:
sys
.
stdout
.
write
(
colorize
(
"warning"
,
"The canonical source for Poetry's installation script is now https://install.python-poetry.org. "
"Please update your usage to reflect this.
\n
"
,
)
)
sys
.
exit
(
main
())
sys
.
exit
(
main
())
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment