-
Notifications
You must be signed in to change notification settings - Fork 14.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a version view to display airflow version info
- Loading branch information
Showing
5 changed files
with
198 additions
and
88 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,7 @@ | |
.DS_Store | ||
.ipynb* | ||
.coverage | ||
airflow/git_version | ||
airflow/www/static/coverage/ | ||
airflow.db | ||
airflow.cfg | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
{# | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# | ||
#} | ||
{% extends "airflow/master.html" %} | ||
|
||
{% block body %} | ||
{{ super() }} | ||
<h2>{{ title }}</h2> | ||
{% set version_label = 'Version' %} | ||
{% if airflow_version %} | ||
<h4>{{ version_label }} : <a href="https://pypi.python.org/pypi/airflow/{{ airflow_version }}">{{ airflow_version }}</a></h4> | ||
{% else %} | ||
<h4>{{ version_label }} : Not Available</h4> | ||
{% endif %} | ||
<h4>Git Version :{% if git_version %} {{ git_version }} {% else %} Not Available {% endif %}</h4> | ||
<hr> | ||
|
||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,12 @@ | ||
from setuptools import setup, find_packages, Command | ||
from setuptools.command.test import test as TestCommand | ||
|
||
import logging | ||
import os | ||
import sys | ||
|
||
logger = logging.getLogger(__name__) | ||
|
||
# Kept manually in sync with airflow.__version__ | ||
version = '1.7.0' | ||
|
||
|
@@ -35,6 +38,44 @@ def run(self): | |
os.system('rm -vrf ./build ./dist ./*.pyc ./*.tgz ./*.egg-info') | ||
|
||
|
||
def git_version(version): | ||
try: | ||
import git | ||
except ImportError: | ||
logger.warn('gitpython not found: Cannot compute the git version.') | ||
return '' | ||
try: | ||
repo = git.Repo('.git') | ||
except ImportError: | ||
logger.warn('Git repo not found: Cannot compute the git version.') | ||
return '' | ||
sha = repo.head.commit.hexsha | ||
if repo.is_dirty(): | ||
return '.dev0+{sha}.dirty'.format(sha=sha) | ||
# commit is clean | ||
# is it release of `version` ? | ||
try: | ||
tag = repo.git.describe( | ||
match='[0-9]*', exact_match=True, | ||
tags=True, dirty=True) | ||
assert tag == version, (tag, version) | ||
return '.release:{version}+{sha}'.format(version=version, | ||
sha=sha) | ||
except git.GitCommandError: | ||
return '.dev0+{sha}'.format(sha=sha) | ||
|
||
|
||
def write_version(filename=os.path.join('airflow', 'git_version')): | ||
cnt = """%(git_revision)s""" | ||
text = cnt % {'git_revision': | ||
git_version(version)} | ||
try: | ||
with open(filename, 'w') as a: | ||
a.write(text) | ||
except Exception as e: | ||
logger.error(e) | ||
|
||
|
||
async = [ | ||
'greenlet>=0.4.9', | ||
'eventlet>= 0.9.7', | ||
|
@@ -100,91 +141,98 @@ def run(self): | |
devel_hadoop = devel_minreq + hive + hdfs + webhdfs + kerberos | ||
devel_all = devel + all_dbs + doc + samba + s3 + slack + crypto + oracle + docker | ||
|
||
setup( | ||
name='airflow', | ||
description='Programmatically author, schedule and monitor data pipelines', | ||
license='Apache License 2.0', | ||
version=version, | ||
packages=find_packages(), | ||
package_data={'': ['airflow/alembic.ini']}, | ||
include_package_data=True, | ||
zip_safe=False, | ||
scripts=['airflow/bin/airflow'], | ||
install_requires=[ | ||
'alembic>=0.8.3, <0.9', | ||
'babel>=1.3, <2.0', | ||
'chartkick>=0.4.2, < 0.5', | ||
'croniter>=0.3.8, <0.4', | ||
'dill>=0.2.2, <0.3', | ||
'python-daemon>=2.1.1, <2.2', | ||
'flask>=0.10.1, <0.11', | ||
'flask-admin>=1.4.0, <2.0.0', | ||
'flask-cache>=0.13.1, <0.14', | ||
'flask-login==0.2.11', | ||
'future>=0.15.0, <0.16', | ||
'funcsigs>=0.4, <1', | ||
'gunicorn>=19.3.0, <19.4.0', # 19.4.? seemed to have issues | ||
'jinja2>=2.7.3, <3.0', | ||
'markdown>=2.5.2, <3.0', | ||
'pandas>=0.15.2, <1.0.0', | ||
'pygments>=2.0.1, <3.0', | ||
'python-dateutil>=2.3, <3', | ||
'requests>=2.5.1, <3', | ||
'setproctitle>=1.1.8, <2', | ||
'sqlalchemy>=0.9.8', | ||
'thrift>=0.9.2, <0.10', | ||
'Flask-WTF==0.12' | ||
], | ||
extras_require={ | ||
'all': devel_all, | ||
'all_dbs': all_dbs, | ||
'async': async, | ||
'celery': celery, | ||
'crypto': crypto, | ||
'devel': devel_minreq, | ||
'devel_hadoop': devel_hadoop, | ||
'doc': doc, | ||
'docker': docker, | ||
'druid': druid, | ||
'gcp_api': gcp_api, | ||
'hdfs': hdfs, | ||
'hive': hive, | ||
'jdbc': jdbc, | ||
'mssql': mssql, | ||
'mysql': mysql, | ||
'oracle': oracle, | ||
'postgres': postgres, | ||
'rabbitmq': rabbitmq, | ||
's3': s3, | ||
'samba': samba, | ||
'slack': slack, | ||
'statsd': statsd, | ||
'vertica': vertica, | ||
'ldap': ldap, | ||
'webhdfs': webhdfs, | ||
'kerberos': kerberos, | ||
'password': password, | ||
'github_enterprise': github_enterprise, | ||
'qds': qds, | ||
'cloudant': cloudant | ||
}, | ||
classifiers={ | ||
'Development Status :: 5 - Production/Stable', | ||
'Environment :: Console', | ||
'Environment :: Web Environment', | ||
'Intended Audience :: Developers', | ||
'Intended Audience :: System Administrators', | ||
'License :: OSI Approved :: Apache Software License', | ||
'Programming Language :: Python :: 2.7', | ||
'Programming Language :: Python :: 3.4', | ||
'Topic :: System :: Monitoring', | ||
}, | ||
author='Maxime Beauchemin', | ||
author_email='[email protected]', | ||
url='https://github.com/airbnb/airflow', | ||
download_url=( | ||
'https://github.com/airbnb/airflow/tarball/' + version), | ||
cmdclass={'test': Tox, | ||
'extra_clean': CleanCommand, | ||
}, | ||
) | ||
def do_setup(): | ||
write_version() | ||
setup( | ||
name='airflow', | ||
description='Programmatically author, schedule and monitor data pipelines', | ||
license='Apache License 2.0', | ||
version=version, | ||
packages=find_packages(), | ||
package_data={'': ['airflow/alembic.ini', "airflow/git_version"]}, | ||
include_package_data=True, | ||
zip_safe=False, | ||
scripts=['airflow/bin/airflow'], | ||
install_requires=[ | ||
'alembic>=0.8.3, <0.9', | ||
'babel>=1.3, <2.0', | ||
'chartkick>=0.4.2, < 0.5', | ||
'croniter>=0.3.8, <0.4', | ||
'dill>=0.2.2, <0.3', | ||
'python-daemon>=2.1.1, <2.2', | ||
'flask>=0.10.1, <0.11', | ||
'flask-admin>=1.4.0, <2.0.0', | ||
'flask-cache>=0.13.1, <0.14', | ||
'flask-login==0.2.11', | ||
'future>=0.15.0, <0.16', | ||
'funcsigs>=0.4, <1', | ||
'gitpython>=2.0.2', | ||
'gunicorn>=19.3.0, <19.4.0', # 19.4.? seemed to have issues | ||
'jinja2>=2.7.3, <3.0', | ||
'markdown>=2.5.2, <3.0', | ||
'pandas>=0.15.2, <1.0.0', | ||
'pygments>=2.0.1, <3.0', | ||
'python-dateutil>=2.3, <3', | ||
'requests>=2.5.1, <3', | ||
'setproctitle>=1.1.8, <2', | ||
'sqlalchemy>=0.9.8', | ||
'thrift>=0.9.2, <0.10', | ||
'Flask-WTF==0.12' | ||
], | ||
extras_require={ | ||
'all': devel_all, | ||
'all_dbs': all_dbs, | ||
'async': async, | ||
'celery': celery, | ||
'crypto': crypto, | ||
'devel': devel_minreq, | ||
'devel_hadoop': devel_hadoop, | ||
'doc': doc, | ||
'docker': docker, | ||
'druid': druid, | ||
'gcp_api': gcp_api, | ||
'hdfs': hdfs, | ||
'hive': hive, | ||
'jdbc': jdbc, | ||
'mssql': mssql, | ||
'mysql': mysql, | ||
'oracle': oracle, | ||
'postgres': postgres, | ||
'rabbitmq': rabbitmq, | ||
's3': s3, | ||
'samba': samba, | ||
'slack': slack, | ||
'statsd': statsd, | ||
'vertica': vertica, | ||
'ldap': ldap, | ||
'webhdfs': webhdfs, | ||
'kerberos': kerberos, | ||
'password': password, | ||
'github_enterprise': github_enterprise, | ||
'qds': qds, | ||
'cloudant': cloudant | ||
}, | ||
classifiers={ | ||
'Development Status :: 5 - Production/Stable', | ||
'Environment :: Console', | ||
'Environment :: Web Environment', | ||
'Intended Audience :: Developers', | ||
'Intended Audience :: System Administrators', | ||
'License :: OSI Approved :: Apache Software License', | ||
'Programming Language :: Python :: 2.7', | ||
'Programming Language :: Python :: 3.4', | ||
'Topic :: System :: Monitoring', | ||
}, | ||
author='Maxime Beauchemin', | ||
author_email='[email protected]', | ||
url='https://github.com/airbnb/airflow', | ||
download_url=( | ||
'https://github.com/airbnb/airflow/tarball/' + version), | ||
cmdclass={'test': Tox, | ||
'extra_clean': CleanCommand, | ||
}, | ||
) | ||
|
||
|
||
if __name__ == "__main__": | ||
do_setup() |