Merge pull request #5682 from pfmoore/prep_for_dist

Make args for prep_for_dist consistent
This commit is contained in:
Paul Moore 2018-07-31 10:49:36 +01:00 committed by GitHub
commit 049eb58797
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -65,7 +65,7 @@ class DistAbstraction(object):
"""Return a setuptools Dist object."""
raise NotImplementedError(self.dist)
def prep_for_dist(self, finder):
def prep_for_dist(self, finder, build_isolation):
"""Ensure that we can get a Dist for this requirement."""
raise NotImplementedError(self.dist)
@ -132,7 +132,7 @@ class Installed(DistAbstraction):
def dist(self, finder):
return self.req.satisfied_by
def prep_for_dist(self, finder):
def prep_for_dist(self, finder, build_isolation):
pass