Skip to content

Commit

Permalink
stop using distribute on py3 with modern releases of setuptools
Browse files Browse the repository at this point in the history
  • Loading branch information
mmerickel committed May 31, 2014
1 parent 5f1b3ab commit b77cc98
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions pyramid/scaffolds/tests.py
Expand Up @@ -11,8 +11,6 @@
except ImportError: # pragma: no cover
import http.client as httplib

from pyramid.compat import PY3

class TemplateTest(object):
def make_venv(self, directory): # pragma: no cover
import virtualenv
Expand All @@ -23,8 +21,7 @@ def make_venv(self, directory): # pragma: no cover
virtualenv.create_environment(directory,
site_packages=False,
clear=False,
unzip_setuptools=True,
use_distribute=PY3)
unzip_setuptools=True)
def install(self, tmpl_name): # pragma: no cover
try:
self.old_cwd = os.getcwd()
Expand Down

0 comments on commit b77cc98

Please sign in to comment.