mirror of
https://github.com/kennethreitz/pipenv.git
synced 2026-06-05 22:50:18 +00:00
+1
-1
@@ -280,7 +280,7 @@ class Project(object):
|
||||
def dev_packages(self):
|
||||
"""Returns a list of dev-packages, for pip-tools to consume."""
|
||||
ps = {}
|
||||
for k, v in self.parsed_pipfile.get('packages', {}).items():
|
||||
for k, v in self.parsed_pipfile.get('dev-packages', {}).items():
|
||||
# Skip editable VCS deps.
|
||||
if hasattr(v, 'keys'):
|
||||
if is_vcs(v):
|
||||
|
||||
Reference in New Issue
Block a user