You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by cr...@apache.org on 2017/12/19 20:29:46 UTC

incubator-airflow git commit: [AIRFLOW-1938] Remove tag version check in setup.py

Repository: incubator-airflow
Updated Branches:
  refs/heads/master 4ce4faaea -> cc4404b5f


[AIRFLOW-1938] Remove tag version check in setup.py

Closes #2889 from criccomini/AIRFLOW-1938


Project: http://git-wip-us.apache.org/repos/asf/incubator-airflow/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-airflow/commit/cc4404b5
Tree: http://git-wip-us.apache.org/repos/asf/incubator-airflow/tree/cc4404b5
Diff: http://git-wip-us.apache.org/repos/asf/incubator-airflow/diff/cc4404b5

Branch: refs/heads/master
Commit: cc4404b5f75216680ee3a83d980511b5123d3ef3
Parents: 4ce4faa
Author: Chris Riccomini <cr...@apache.org>
Authored: Tue Dec 19 12:29:39 2017 -0800
Committer: Chris Riccomini <cr...@apache.org>
Committed: Tue Dec 19 12:29:39 2017 -0800

----------------------------------------------------------------------
 setup.py | 4 ----
 1 file changed, 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-airflow/blob/cc4404b5/setup.py
----------------------------------------------------------------------
diff --git a/setup.py b/setup.py
index d97e8e5..0b7462b 100644
--- a/setup.py
+++ b/setup.py
@@ -81,10 +81,6 @@ def git_version(version):
         # 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: