Updated the version info in the documentation. Gotta figure out a way to make that download url less manual.

This commit is contained in:
Ryan Williams
2009-10-06 21:40:32 -07:00
parent 0008b8582a
commit e5fc3874c7
3 changed files with 5 additions and 4 deletions

View File

@@ -48,10 +48,11 @@ copyright = u'2009, <eventlet contributors>'
# |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.

View File

@@ -35,7 +35,7 @@ easy_install eventlet
<p>Alternately, you can download the source tarball:
<ul>
<li><a href="http://pypi.python.org/packages/source/e/eventlet/eventlet-0.8.12.tar.gz#md5=f9888a6b4135a2c124200d233f5f5829">eventlet-0.8.12.tar.gz</a></li>
<li><a href="http://pypi.python.org/packages/source/e/eventlet/eventlet-0.9.0.tar.gz#md5=4e14ce5070edd078e3a4e8d6df9a5dc4">eventlet-0.8.12.tar.gz</a></li>
</ul>
</p>

View File

@@ -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