]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
version warning
authorMike Bayer <mike_mp@zzzcomputing.com>
Sun, 29 Jul 2007 04:11:55 +0000 (04:11 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sun, 29 Jul 2007 04:11:55 +0000 (04:11 +0000)
doc/build/content/tutorial.txt

index 93f3c506458d7a1d7d713d68df50f38dad3b1a72..95630927580a5d914211952a3e9946ef43c447cb 100644 (file)
@@ -44,6 +44,15 @@ Note that the SQLite library download is not required with Windows, as the Windo
 Getting Started {@name=gettingstarted}
 --------------------------
 
+### Checking the Version
+
+**Note:  This tutorial is oriented towards version 0.3.10 of SQLAlchemy.  It will *not* work with versions earlier than 0.3.9.**  Check the version of SQLAlchemy you have installed via:
+
+    {python}
+    >>> import sqlalchemy
+    >>> sqlalchemy.__version__ # doctest: +SKIP
+    0.3.10 
+
 ### Imports
 
 To start connecting to databases and begin issuing queries, we want to import the base of SQLAlchemy's functionality, which is provided under the module name of `sqlalchemy`.  For the purposes of this tutorial, we will import its full list of symbols into our own local namespace.