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
0970878e
Unverified
Commit
0970878e
authored
Nov 08, 2018
by
Sébastien Eustace
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix installation of files
parent
4c05adef
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletions
+2
-1
CHANGELOG.md
+1
-0
poetry/installation/pip_installer.py
+1
-1
No files found.
CHANGELOG.md
View file @
0970878e
...
@@ -9,6 +9,7 @@
...
@@ -9,6 +9,7 @@
-
Fixed the building of wheels with C extensions and an
`src`
layout.
-
Fixed the building of wheels with C extensions and an
`src`
layout.
-
Fixed extras being selected when resolving dependencies even when not required.
-
Fixed extras being selected when resolving dependencies even when not required.
-
Fixed performance issues when packaging projects if a lot of files were excluded.
-
Fixed performance issues when packaging projects if a lot of files were excluded.
-
Fixed installation of files.
## [0.12.6] - 2018-11-05
## [0.12.6] - 2018-11-05
...
...
poetry/installation/pip_installer.py
View file @
0970878e
...
@@ -126,7 +126,7 @@ class PipInstaller(BaseInstaller):
...
@@ -126,7 +126,7 @@ class PipInstaller(BaseInstaller):
else
:
else
:
req
=
os
.
path
.
realpath
(
package
.
source_url
)
req
=
os
.
path
.
realpath
(
package
.
source_url
)
if
package
.
develop
:
if
package
.
develop
and
package
.
source_type
==
"directory"
:
req
=
[
"-e"
,
req
]
req
=
[
"-e"
,
req
]
return
req
return
req
...
...
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