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
778b5ad8
Unverified
Commit
778b5ad8
authored
Mar 19, 2018
by
Sébastien Eustace
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix missing files in built wheels with extensions
parent
6d0aef0c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
17 deletions
+2
-17
CHANGELOG.md
+1
-0
poetry/masonry/builders/wheel.py
+1
-17
No files found.
CHANGELOG.md
View file @
778b5ad8
...
...
@@ -6,6 +6,7 @@
-
Fixed built wheels not getting information from the virtualenv.
-
Fixed building wheel with conditional extensions.
-
Fixed missing files in built wheel with extensions.
[
0.6.2
]
- 2018-03-19
...
...
poetry/masonry/builders/wheel.py
View file @
778b5ad8
...
...
@@ -15,7 +15,6 @@ from types import SimpleNamespace
from
poetry.__version__
import
__version__
from
poetry.semver.constraints
import
Constraint
from
poetry.semver.constraints
import
MultiConstraint
from
poetry.vcs
import
get_vcs
from
..utils.helpers
import
normalize_file_permissions
from
..utils.tags
import
get_abbr_impl
...
...
@@ -163,22 +162,7 @@ class WheelBuilder(Builder):
def
find_excluded_files
(
self
)
->
list
:
# Checking VCS
vcs
=
get_vcs
(
self
.
_original_path
)
if
not
vcs
:
return
[]
ignored
=
vcs
.
get_ignored_files
()
result
=
[]
for
file
in
ignored
:
try
:
file
=
Path
(
file
)
.
absolute
()
.
relative_to
(
self
.
_original_path
)
except
ValueError
:
# Should only happen in tests
continue
result
.
append
(
file
)
return
result
return
[]
@property
def
dist_info
(
self
)
->
str
:
...
...
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