http://alembic.zzzcomputing.com/en/latest/ seems to be quit good for this.
Metadata Update from @davidcarlos: - Issue set to the milestone: version 0.4 - Issue tagged with: backend
Metadata Update from @davidcarlos: - Issue assigned to davidcarlos
Metadata Update from @davidcarlos: - Assignee reset
Assignee: @fabio1079 , @danmoura17
Commit 6079ad1 partially solves the issue. There is one last problem: in alembic/env.py we are importing kiskadee modules. If we really need to do that, we should not assume kiskadee is installed, i.e., we should
alembic/env.py
The documentation project does so with
import sys sys.path.insert(0, os.path.abspath('../'))
It is ok to do it that way there because we always run the Makefile to build documentation. In alembic's case, since it exports the alembic binary, we could first query about env.py path and finally include the directory above it in the sys.path. Note that we only want this for non production environments
alembic
env.py
Metadata Update from @davidcarlos: - Issue close_status updated to: NEXTRELEASE - Issue status updated to: Closed (was: Open)