This is an automated email from the ASF dual-hosted git repository. timi pushed a commit to branch add-superset-version in repository https://gitbox.apache.org/repos/asf/incubator-superset.git
commit b268c31ac0a68ddfb468c0066d14665bf5e624a6 Author: timifasubaa <[email protected]> AuthorDate: Thu Sep 27 01:12:04 2018 -0700 add superset __version__ --- superset/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/superset/__init__.py b/superset/__init__.py index ce98dc2..da6888d 100644 --- a/superset/__init__.py +++ b/superset/__init__.py @@ -26,6 +26,8 @@ from superset.security import SupersetSecurityManager APP_DIR = os.path.dirname(__file__) CONFIG_MODULE = os.environ.get('SUPERSET_CONFIG', 'superset.config') +__version__ = '0.27.0' + if not os.path.exists(config.DATA_DIR): os.makedirs(config.DATA_DIR)
