-
Notifications
You must be signed in to change notification settings - Fork 16.4k
[AIRFLOW-116] Add a version view to display airflow version info #1504
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| 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 | ||
|
|
||
| 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 %} |
| 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): | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. +doc string
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. done. |
||
| try: | ||
| import git | ||
| except ImportError: | ||
| logger.warn('gitpython not found: Cannot compute the git version.') | ||
| return '' | ||
| try: | ||
| repo = git.Repo('.git') | ||
| except ImportError: | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Wouldn't be an
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done. using Exception. |
||
| logger.warn('Git repo not found: Cannot compute the git version.') | ||
| return '' | ||
| sha = repo.head.commit.hexsha | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. references to
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Doesn't else make sense if there is a reasonable default as mentioned on http://stackoverflow.com/a/14590478/1110993
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| 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': | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. the python community is moving away from the modulo format operator in favor of
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. done... replaced with |
||
| git_version(version)} | ||
| try: | ||
| with open(filename, 'w') as a: | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I wouldn't silence this error unless we're expecting the write to fail, let it raise!
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done.. I've removed the try-except.. |
||
| a.write(text) | ||
| except Exception as e: | ||
| logger.error(e) | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. logger.exception(e) is usually better as it provides the stack trace. |
||
|
|
||
|
|
||
| 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='maximebeauchemin@gmail.com', | ||
| 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='maximebeauchemin@gmail.com', | ||
| 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() | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the current working directory may not be the one you think it is. I'd use something like
os.path.join(settings.AIRFLOW_HOME, 'git_version')There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done, though I am using os.path.join(*[settings.AIRFLOW_HOME, 'airflow', 'git_version']) here and in setup.py