Commit 1febd178 authored by Jason Madden's avatar Jason Madden

Let zest.releaser know where to get the version

parent 0f443e95
[bdist_wheel]
universal = 0
[zest.releaser]
python-file-with-version = src/gevent/__init__.py
...@@ -15,7 +15,8 @@ _version_info = namedtuple('version_info', ...@@ -15,7 +15,8 @@ _version_info = namedtuple('version_info',
#: The programatic version identifier. The fields have (roughly) the #: The programatic version identifier. The fields have (roughly) the
#: same meaning as :data:`sys.version_info` #: same meaning as :data:`sys.version_info`
version_info = _version_info(1, 2, 0, 'beta', 1) #: Deprecated in 1.2.
version_info = _version_info(1, 2, 0, 'final', 1)
#: The human-readable PEP 440 version identifier #: The human-readable PEP 440 version identifier
__version__ = '1.2b1.dev0' __version__ = '1.2b1.dev0'
......
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