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
50360f2d
Commit
50360f2d
authored
Jul 28, 2020
by
Sébastien Eustace
Committed by
Arun Babu Neelicattu
Jul 28, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Propagate package inspection logs
parent
c77299ed
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
5 deletions
+5
-5
poetry/console/commands/add.py
+1
-1
poetry/console/commands/debug/resolve.py
+1
-1
poetry/console/commands/install.py
+1
-1
poetry/console/commands/remove.py
+1
-1
poetry/inspection/info.py
+1
-1
No files found.
poetry/console/commands/add.py
View file @
50360f2d
...
...
@@ -60,7 +60,7 @@ class AddCommand(InstallerCommand, InitCommand):
" - A url (<b>https://example.com/packages/my-package-0.1.0.tar.gz</b>)
\n
"
)
loggers
=
[
"poetry.repositories.pypi_repository"
]
loggers
=
[
"poetry.repositories.pypi_repository"
,
"poetry.inspection.info"
]
def
handle
(
self
):
from
poetry.core.semver
import
parse_constraint
...
...
poetry/console/commands/debug/resolve.py
View file @
50360f2d
...
...
@@ -25,7 +25,7 @@ class DebugResolveCommand(InitCommand):
option
(
"install"
,
None
,
"Show what would be installed for the current system."
),
]
loggers
=
[
"poetry.repositories.pypi_repository"
]
loggers
=
[
"poetry.repositories.pypi_repository"
,
"poetry.inspection.info"
]
def
handle
(
self
):
from
poetry.core.packages.project_package
import
ProjectPackage
...
...
poetry/console/commands/install.py
View file @
50360f2d
...
...
@@ -45,7 +45,7 @@ dependencies and not including the current project, run the command with the
<info> poetry install --no-root</info>
"""
_loggers
=
[
"poetry.repositories.pypi_repository"
]
_loggers
=
[
"poetry.repositories.pypi_repository"
,
"poetry.inspection.info"
]
def
handle
(
self
):
from
poetry.masonry.builders
import
EditableBuilder
...
...
poetry/console/commands/remove.py
View file @
50360f2d
...
...
@@ -25,7 +25,7 @@ list of installed packages
<info>poetry remove</info>"""
loggers
=
[
"poetry.repositories.pypi_repository"
]
loggers
=
[
"poetry.repositories.pypi_repository"
,
"poetry.inspection.info"
]
def
handle
(
self
):
packages
=
self
.
argument
(
"packages"
)
...
...
poetry/inspection/info.py
View file @
50360f2d
...
...
@@ -155,7 +155,7 @@ class PackageInfo:
self
.
_log
(
"Invalid constraint ({}) found in {}-{} dependencies, "
"skipping"
.
format
(
req
,
package
.
name
,
package
.
version
),
level
=
"
debu
g"
,
level
=
"
warnin
g"
,
)
continue
...
...
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