Commit a4832e9d authored by Hanno Schlichting's avatar Hanno Schlichting

LP #634942: Only require ``nt_svcutils`` on Windows.

parent ab7c839d
...@@ -63,7 +63,6 @@ eggs = ...@@ -63,7 +63,6 @@ eggs =
Record Record
RestrictedPython RestrictedPython
initgroups initgroups
nt_svcutils
tempstorage tempstorage
zExceptions zExceptions
zLOG zLOG
......
...@@ -14,6 +14,8 @@ Bugs Fixed ...@@ -14,6 +14,8 @@ Bugs Fixed
- Fixed ``testZODBCompat`` tests in ZopeTestCase to match modern ZODB - Fixed ``testZODBCompat`` tests in ZopeTestCase to match modern ZODB
semantics. semantics.
- LP #634942: Only require ``nt_svcutils`` on Windows.
Features Added Features Added
++++++++++++++ ++++++++++++++
......
...@@ -13,8 +13,14 @@ ...@@ -13,8 +13,14 @@
############################################################################## ##############################################################################
import os import os
import sys
from setuptools import setup, find_packages from setuptools import setup, find_packages
additional_install_requires = []
if sys.platform[:3].lower() == "win":
additional_install_requires += ['nt_svcutils']
setup(name='Zope2', setup(name='Zope2',
version='2.13.0a5.dev', version='2.13.0a5.dev',
...@@ -56,7 +62,6 @@ setup(name='Zope2', ...@@ -56,7 +62,6 @@ setup(name='Zope2',
'ZopeUndo', 'ZopeUndo',
'docutils', 'docutils',
'initgroups', 'initgroups',
'nt_svcutils',
'pytz', 'pytz',
'setuptools', 'setuptools',
'tempstorage', 'tempstorage',
...@@ -106,7 +111,7 @@ setup(name='Zope2', ...@@ -106,7 +111,7 @@ setup(name='Zope2',
'Products.MIMETools', 'Products.MIMETools',
'Products.PythonScripts', 'Products.PythonScripts',
'Products.StandardCacheManagers', 'Products.StandardCacheManagers',
], ] + additional_install_requires,
include_package_data=True, include_package_data=True,
zip_safe=False, zip_safe=False,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment