I have been able to compile PyAlembic for Python 3.7 on Linux and have a Python 3.7 testing environment.
We are slowly moving our tools to Python 3 and one of them use alembic/cask to generate Alembic file from scratch.
My proposition is that I do it myself and submit a PR. The plan is that cask would be Python 2/3 compatible. I will try to rely on builtins:
from __future__ import (absolute_import,
division,
print_function,
unicode_literals)
And nothing more do don't add new dependencies (no six or future).
Is there any interest in this? Are you already working on it?
Thanks in advance!
I have been able to compile PyAlembic for Python 3.7 on Linux and have a Python 3.7 testing environment.
We are slowly moving our tools to Python 3 and one of them use alembic/cask to generate Alembic file from scratch.
My proposition is that I do it myself and submit a PR. The plan is that cask would be Python 2/3 compatible. I will try to rely on builtins:
And nothing more do don't add new dependencies (no
sixorfuture).Is there any interest in this? Are you already working on it?
Thanks in advance!