- ensure 0.9 in various documentation spaces

- supporting py 2.6, update pypy version, jython not working these days
This commit is contained in:
Mike Bayer
2013-10-26 16:47:42 -04:00
parent 4ea5d303a1
commit 2cf9fc8fd7
3 changed files with 12 additions and 13 deletions
+2 -2
View File
@@ -50,13 +50,13 @@ Version Check
=============
A quick check to verify that we are on at least **version 0.8** of SQLAlchemy:
A quick check to verify that we are on at least **version 0.9** of SQLAlchemy:
.. sourcecode:: pycon+sql
>>> import sqlalchemy
>>> sqlalchemy.__version__ # doctest:+SKIP
0.8.0
0.9.0
Connecting
==========
+8 -9
View File
@@ -74,13 +74,12 @@ Supported Platforms
SQLAlchemy has been tested against the following platforms:
* cPython since version 2.5, through the 2.xx series
* cPython since version 2.6, through the 2.xx series
* cPython version 3, throughout all 3.xx series
* `Jython <http://www.jython.org/>`_ 2.5 or greater
* `Pypy <http://pypy.org/>`_ 1.5 or greater
* `Pypy <http://pypy.org/>`_ 2.1 or greater
.. versionchanged:: 0.8
Python 2.5 is now the minimum Python version supported.
.. versionchanged:: 0.9
Python 2.6 is now the minimum Python version supported.
Supported Installation Methods
-------------------------------
@@ -172,7 +171,7 @@ the available DBAPIs for each database, including external links.
Checking the Installed SQLAlchemy Version
------------------------------------------
This documentation covers SQLAlchemy version 0.8. If you're working on a
This documentation covers SQLAlchemy version 0.9. If you're working on a
system that already has SQLAlchemy installed, check the version from your
Python prompt like this:
@@ -180,11 +179,11 @@ Python prompt like this:
>>> import sqlalchemy
>>> sqlalchemy.__version__ # doctest: +SKIP
0.8.0
0.9.0
.. _migration:
0.7 to 0.8 Migration
0.8 to 0.9 Migration
=====================
Notes on what's changed from 0.7 to 0.8 is available here at :doc:`changelog/migration_08`.
Notes on what's changed from 0.8 to 0.9 is available here at :doc:`changelog/migration_09`.
+2 -2
View File
@@ -42,11 +42,11 @@ following text represents the expected return value.
Version Check
=============
A quick check to verify that we are on at least **version 0.8** of SQLAlchemy::
A quick check to verify that we are on at least **version 0.9** of SQLAlchemy::
>>> import sqlalchemy
>>> sqlalchemy.__version__ # doctest:+SKIP
0.8.0
0.9.0
Connecting
==========