From a1d4fca9569fdb03137dc825e426bf8fb2484321 Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Thu, 28 Aug 2014 17:28:53 -0400 Subject: Fix --extras on Python 3 --- ptr.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ptr.py b/ptr.py index 4636fe3..8d37f0b 100644 --- a/ptr.py +++ b/ptr.py @@ -39,8 +39,8 @@ class PyTest(orig.test): if self.distribution.tests_require: self.distribution.fetch_build_eggs(self.distribution.tests_require) if self.distribution.extras_require and self.extras: - map(self.distribution.fetch_build_eggs, - self.distribution.extras_require.values()) + list(map(self.distribution.fetch_build_eggs, + self.distribution.extras_require.values())) if self.dry_run: self.announce('skipping tests (dry run)') return -- cgit v1.2.1