From 89f3aeeac77d6b608a38d025ccab666261690933 Mon Sep 17 00:00:00 2001 From: jaseg Date: Fri, 10 Jun 2022 22:23:28 +0200 Subject: Gitlab CI test --- setup.py | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index c32f65a..b6e2172 100644 --- a/setup.py +++ b/setup.py @@ -5,9 +5,13 @@ from setuptools import setup, find_packages import subprocess def version(): - res = subprocess.run(['git', 'describe', '--tags', '--match', 'v*'], capture_output=True, check=True, text=True) - version, _, _rest = res.stdout.strip()[1:].partition('-') - return version + try: + res = subprocess.run(['git', 'describe', '--tags', '--match', 'v*'], capture_output=True, check=True, text=True) + version, _, _rest = res.stdout.strip()[1:].partition('-') + return version + except: + subprocess.run(['git', 'describe', '--tags', '--match', 'v*']) + raise setup( name='gerbonara', -- cgit