Skip to content

Commit

Permalink
[AIRFLOW-1938] Remove tag version check in setup.py
Browse files Browse the repository at this point in the history
Closes apache#2889 from criccomini/AIRFLOW-1938
  • Loading branch information
criccomini authored and Acehaidrey committed Jan 19, 2018
1 parent 2e150b2 commit aa6f685
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit aa6f685

Please sign in to comment.