Skip to content
This repository has been archived by the owner on Feb 10, 2023. It is now read-only.

Commit

Permalink
Actually use the new Zope distribution instead of Zope2.
Browse files Browse the repository at this point in the history
  • Loading branch information
hannosch committed Sep 15, 2017
1 parent 657cc28 commit 73467d7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -60,7 +60,7 @@
'zope.processlifetime',
'zope.schema',
'zope.testing',
'Zope2 >= 4.0a5',
'Zope >= 4.0b1',
],
include_package_data=True,
zip_safe=False,
Expand Down
2 changes: 1 addition & 1 deletion src/ZServer/utils.py
Expand Up @@ -25,7 +25,7 @@ def _prep_version_data():
if _version_string is None:
v = sys.version_info
pyver = "python %d.%d.%d, %s" % (v[0], v[1], v[2], sys.platform)
dist = pkg_resources.get_distribution('Zope2')
dist = pkg_resources.get_distribution('Zope')
_version_string = "%s, %s" % (dist.version, pyver)


Expand Down

0 comments on commit 73467d7

Please sign in to comment.