summaryrefslogtreecommitdiff
path: root/alembic/__init__.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2013-12-31 15:01:50 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2013-12-31 15:01:50 -0500
commit410898a56bee5d8dac411e806423fa63dda0d441 (patch)
treeee7db25b0367432f21d5cfcf8adaa1d2448f8511 /alembic/__init__.py
parent158dea527a00050d008e2d78ddd1ef5765b482f4 (diff)
downloadalembic-410898a56bee5d8dac411e806423fa63dda0d441.tar.gz
- The :class:`.ScriptDirectory` system that loads migration files
from a ``versions/`` directory now supports so-called "sourceless" operation, where the ``.py`` files are not present and instead ``.pyc`` or ``.pyo`` files are directly present where the ``.py`` files should be. Note that while Python 3.3 has a new system of locating ``.pyc``/``.pyo`` files within a directory called ``__pycache__`` (e.g. PEP-3147), PEP-3147 maintains support for the "source-less imports" use case, where the ``.pyc``/``.pyo`` are in present in the "old" location, e.g. next to the ``.py`` file; this is the usage that's supported even when running Python3.3. #163
Diffstat (limited to 'alembic/__init__.py')
-rw-r--r--alembic/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/alembic/__init__.py b/alembic/__init__.py
index d73b16b..13031b0 100644
--- a/alembic/__init__.py
+++ b/alembic/__init__.py
@@ -1,6 +1,6 @@
from os import path
-__version__ = '0.6.2'
+__version__ = '0.6.3'
package_dir = path.abspath(path.dirname(__file__))