summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorSviatoslav Sydorenko <wk@sydorenko.org.ua>2016-09-17 09:43:10 +0300
committerSviatoslav Sydorenko <wk@sydorenko.org.ua>2016-09-17 09:43:10 +0300
commit7877ae712ffe6a76872393b152b01f04e0144154 (patch)
tree7535628f732357199d0538828f68e19b148f3d48 /setup.py
parent18ca113767fdf483ff0e820ac558e3b03334e22e (diff)
downloadcherrypy-git-7877ae712ffe6a76872393b152b01f04e0144154.tar.gz
Drop deprecated cherrypy._cpcompat_subprocess
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index 63807ced..e37d5afa 100644
--- a/setup.py
+++ b/setup.py
@@ -13,8 +13,7 @@ class cherrypy_build_py(build_py):
def build_module(self, module, module_file, package):
python3 = sys.version_info >= (3,)
if python3:
- exclude_pattern = re.compile('ssl_pyopenssl|'
- '_cpcompat_subprocess')
+ exclude_pattern = re.compile('ssl_pyopenssl')
else:
exclude_pattern = re.compile('xxx')
if exclude_pattern.match(module):