diff --git a/python/setup.py.in b/python/setup.py.in index e6170a574aa5c1361928cd93e2396c172ad4bde6..f10ff853ee9a6b7011f4630dd02e7207bee22841 100644 --- a/python/setup.py.in +++ b/python/setup.py.in @@ -33,21 +33,21 @@ def get_major(): if major is not None: return major - return 0 + return 'UNKNOWN' def get_minor(): minor = _get_version_detail(1) if minor is not None: return minor - return 0 + return 'UNKNOWN' def get_patch(): patch = _get_version_detail(2) if patch is not None: return patch - return 0 + return 'UNKNOWN' def is_taged(): try: