Skip to content

Commit

Permalink
Bump version number to v1.7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
mistercrunch committed Aug 31, 2016
1 parent 12fa55d commit 216e5c3
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 2 deletions.
3 changes: 2 additions & 1 deletion airflow/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@
`airflow.www.login`
"""
from builtins import object
__version__ = "1.7.1.3"
from airflow import version
__version__ = version.version

import logging
import os
Expand Down
16 changes: 16 additions & 0 deletions airflow/version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# -*- coding: utf-8 -*-
#
# 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.
#

version = '1.7.2'
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,16 @@
from setuptools import setup, find_packages, Command
from setuptools.command.test import test as TestCommand

import imp
import logging
import os
import sys

logger = logging.getLogger(__name__)

# Kept manually in sync with airflow.__version__
version = '1.7.1.3'
version = imp.load_source(
'version', os.path.join('airflow', 'version.py')).version


class Tox(TestCommand):
Expand Down

0 comments on commit 216e5c3

Please sign in to comment.