Chris Riccomini created AIRFLOW-1938:
----------------------------------------
Summary: Remove tag version check in setup.py
Key: AIRFLOW-1938
URL: https://issues.apache.org/jira/browse/AIRFLOW-1938
Project: Apache Airflow
Issue Type: Bug
Reporter: Chris Riccomini
This version check in setup.py is causing problems with releases:
{noformat}
tag = repo.git.describe(
match='[0-9]*', exact_match=True,
tags=True, dirty=True)
assert tag == version, (tag, version)
{noformat}
The issue is that we need to tag a release as an RC, but we need to have the
version of the RC be the final version. For example, tag=1.9.0rc1 and
version=1.9.0. This assertion fails when we make an artifact like this.
--
This message was sent by Atlassian JIRA
(v6.4.14#64029)