From: Mike Bayer Date: Sun, 29 Jul 2007 04:11:55 +0000 (+0000) Subject: version warning X-Git-Tag: rel_0_3_11~29 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e9d6a5eb3eeb816f23eb099f8092a0a0d2547de6;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git version warning --- diff --git a/doc/build/content/tutorial.txt b/doc/build/content/tutorial.txt index 93f3c50645..9563092758 100644 --- a/doc/build/content/tutorial.txt +++ b/doc/build/content/tutorial.txt @@ -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.