Commit 6c15222e by Sébastien Eustace

Fix sub dependencies representation in lock file

parent e9780e8c
...@@ -7,7 +7,8 @@ ...@@ -7,7 +7,8 @@
- Fixed built wheels not getting information from the virtualenv. - Fixed built wheels not getting information from the virtualenv.
- Fixed building wheel with conditional extensions. - Fixed building wheel with conditional extensions.
- Fixed missing files in built wheel with extensions. - Fixed missing files in built wheel with extensions.
- Fixed call to venv binaries on windows - Fixed call to venv binaries on windows.
- Fixed subdependencies representation in lock file.
[0.6.2] - 2018-03-19 [0.6.2] - 2018-03-19
......
...@@ -184,7 +184,7 @@ class Locker: ...@@ -184,7 +184,7 @@ class Locker:
if dependency.is_optional(): if dependency.is_optional():
continue continue
dependencies[dependency.pretty_name] = dependency.pretty_constraint dependencies[dependency.pretty_name] = str(dependency.pretty_constraint)
data = { data = {
'name': package.pretty_name, 'name': package.pretty_name,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment