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
90d17964
Commit
90d17964
authored
Nov 18, 2019
by
Brandon Moore
Committed by
Sébastien Eustace
Nov 18, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Made installation text more clear on dependencies (#1528)
parent
bf6ad084
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
README.md
+1
-1
docs/docs/cli.md
+1
-1
poetry/installation/installer.py
+1
-1
No files found.
README.md
View file @
90d17964
...
@@ -348,7 +348,7 @@ By default `poetry` will install your project's package everytime you run `insta
...
@@ -348,7 +348,7 @@ By default `poetry` will install your project's package everytime you run `insta
$
poetry install
$
poetry install
Installing dependencies from lock file
Installing dependencies from lock file
No
thing
to install or update
No
dependencies
to install or update
- Installing <your-package-name>
(
x.x.x
)
- Installing <your-package-name>
(
x.x.x
)
...
...
docs/docs/cli.md
View file @
90d17964
...
@@ -130,7 +130,7 @@ By default `poetry` will install your project's package everytime you run `insta
...
@@ -130,7 +130,7 @@ By default `poetry` will install your project's package everytime you run `insta
$
poetry install
$
poetry install
Installing dependencies from lock file
Installing dependencies from lock file
No
thing
to install or update
No
dependencies
to install or update
- Installing <your-package-name>
(
x.x.x
)
- Installing <your-package-name>
(
x.x.x
)
...
...
poetry/installation/installer.py
View file @
90d17964
...
@@ -234,7 +234,7 @@ class Installer:
...
@@ -234,7 +234,7 @@ class Installer:
# Execute operations
# Execute operations
actual_ops
=
[
op
for
op
in
ops
if
not
op
.
skipped
]
actual_ops
=
[
op
for
op
in
ops
if
not
op
.
skipped
]
if
not
actual_ops
and
(
self
.
_execute_operations
or
self
.
_dry_run
):
if
not
actual_ops
and
(
self
.
_execute_operations
or
self
.
_dry_run
):
self
.
_io
.
write_line
(
"No
thing
to install or update"
)
self
.
_io
.
write_line
(
"No
dependencies
to install or update"
)
if
actual_ops
and
(
self
.
_execute_operations
or
self
.
_dry_run
):
if
actual_ops
and
(
self
.
_execute_operations
or
self
.
_dry_run
):
installs
=
[]
installs
=
[]
...
...
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