summaryrefslogtreecommitdiff
path: root/doc/build
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2013-10-26 16:47:42 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2013-10-26 16:47:42 -0400
commit2cf9fc8fd7dc86178c39a4a657417ea4ef9eaf2e (patch)
treedd0da41171a4d798fd6ef5125356842024c0f501 /doc/build
parent4ea5d303a177a708fb28fee90f6fea2f8f4b1101 (diff)
downloadsqlalchemy-2cf9fc8fd7dc86178c39a4a657417ea4ef9eaf2e.tar.gz
- ensure 0.9 in various documentation spaces
- supporting py 2.6, update pypy version, jython not working these days
Diffstat (limited to 'doc/build')
-rw-r--r--doc/build/core/tutorial.rst4
-rw-r--r--doc/build/intro.rst17
-rw-r--r--doc/build/orm/tutorial.rst4
3 files changed, 12 insertions, 13 deletions
diff --git a/doc/build/core/tutorial.rst b/doc/build/core/tutorial.rst
index b130f4d72..aa8ba2f2a 100644
--- a/doc/build/core/tutorial.rst
+++ b/doc/build/core/tutorial.rst
@@ -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
==========
diff --git a/doc/build/intro.rst b/doc/build/intro.rst
index c5e7f7425..ff170c18d 100644
--- a/doc/build/intro.rst
+++ b/doc/build/intro.rst
@@ -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`.
diff --git a/doc/build/orm/tutorial.rst b/doc/build/orm/tutorial.rst
index 466e3075b..737961bac 100644
--- a/doc/build/orm/tutorial.rst
+++ b/doc/build/orm/tutorial.rst
@@ -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
==========