diff --git a/doc/conf.py b/doc/conf.py index 44a8f79..46d06d0 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -48,10 +48,11 @@ copyright = u'2009, ' # |version| and |release|, also used in various other places throughout the # built documents. # +import eventlet # The short X.Y version. -version = '0.9' +version = '%s.%s' % (eventlet.version_info[0], eventlet.version_info[1]) # The full version, including alpha/beta/rc tags. -release = '0.9pre' +release = eventlet.__version__ # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/doc/real_index.html b/doc/real_index.html index 183b4a0..a4d01da 100644 --- a/doc/real_index.html +++ b/doc/real_index.html @@ -35,7 +35,7 @@ easy_install eventlet

Alternately, you can download the source tarball:

diff --git a/eventlet/__init__.py b/eventlet/__init__.py index ea5e5d0..33b5006 100644 --- a/eventlet/__init__.py +++ b/eventlet/__init__.py @@ -17,5 +17,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -version_info = (0, 9, '0') +version_info = (0, 9, 0) __version__ = '%s.%s.%s' % version_info