Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
Zope
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
Zope
Commits
a4832e9d
Commit
a4832e9d
authored
Sep 25, 2010
by
Hanno Schlichting
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
LP #634942: Only require ``nt_svcutils`` on Windows.
parent
ab7c839d
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
3 deletions
+9
-3
buildout.cfg
buildout.cfg
+0
-1
doc/CHANGES.rst
doc/CHANGES.rst
+2
-0
setup.py
setup.py
+7
-2
No files found.
buildout.cfg
View file @
a4832e9d
...
...
@@ -63,7 +63,6 @@ eggs =
Record
RestrictedPython
initgroups
nt_svcutils
tempstorage
zExceptions
zLOG
...
...
doc/CHANGES.rst
View file @
a4832e9d
...
...
@@ -14,6 +14,8 @@ Bugs Fixed
- Fixed ``testZODBCompat`` tests in ZopeTestCase to match modern ZODB
semantics.
- LP #634942: Only require ``nt_svcutils`` on Windows.
Features Added
++++++++++++++
...
...
setup.py
View file @
a4832e9d
...
...
@@ -13,8 +13,14 @@
##############################################################################
import
os
import
sys
from
setuptools
import
setup
,
find_packages
additional_install_requires
=
[]
if
sys
.
platform
[:
3
].
lower
()
==
"win"
:
additional_install_requires
+=
[
'nt_svcutils'
]
setup
(
name
=
'Zope2'
,
version
=
'2.13.0a5.dev'
,
...
...
@@ -56,7 +62,6 @@ setup(name='Zope2',
'ZopeUndo'
,
'docutils'
,
'initgroups'
,
'nt_svcutils'
,
'pytz'
,
'setuptools'
,
'tempstorage'
,
...
...
@@ -106,7 +111,7 @@ setup(name='Zope2',
'Products.MIMETools'
,
'Products.PythonScripts'
,
'Products.StandardCacheManagers'
,
],
]
+
additional_install_requires
,
include_package_data
=
True
,
zip_safe
=
False
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment