Address review

This commit is contained in:
xoviat 2018-01-27 14:37:43 -06:00
parent 5c77300ce8
commit 88105000f5
4 changed files with 4 additions and 2 deletions

View File

@ -1 +0,0 @@
Fix situation where build requirements are installed before calling setup.py.

0
news/4799.trivial Normal file
View File

View File

@ -68,6 +68,9 @@ class BuildEnvironment(object):
class NoOpBuildEnvironment(BuildEnvironment):
def __init__(self, no_clean):
pass
def __enter__(self):
pass

View File

@ -1,7 +1,7 @@
#!/usr/bin/env python
from setuptools import find_packages, setup
import simple # Test gh-4647 regression
import simple # ensure dependency is installed
setup(name='pep518',
version='3.0',