]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
- ensure 0.9 in various documentation spaces
authorMike Bayer <mike_mp@zzzcomputing.com>
Sat, 26 Oct 2013 20:47:42 +0000 (16:47 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sat, 26 Oct 2013 20:47:42 +0000 (16:47 -0400)
- supporting py 2.6, update pypy version, jython not working these days

doc/build/core/tutorial.rst
doc/build/intro.rst
doc/build/orm/tutorial.rst

index b130f4d72142f8a966fb8017acab5c4f9562f0dd..aa8ba2f2a241ae0bbe95ae51cfa8f78dbcb66f28 100644 (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
 ==========
index c5e7f7425f40b0e481ea4a3e5735db3f1fa74596..ff170c18d2669bf66eb831c750fd4bd20eb899ad 100644 (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`.
index 466e3075b234ea68650d4584d4d69b03a9bfd61d..737961bacaf9399324dd82b3ace60243fdeffad2 100644 (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
 ==========