From cbb5e3ff34744dac09c4477225e7c50d7a87fbf7 Mon Sep 17 00:00:00 2001 From: SatCFDI Date: Sat, 7 Sep 2024 19:55:03 -0600 Subject: [PATCH] Added default version --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index aada126..82c627f 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ def get_latest_git_tag(): latest_tag = subprocess.check_output(['git', 'describe', '--tags', '--abbrev=0']).strip().decode('utf-8') return latest_tag except subprocess.CalledProcessError: - return "No tags found" + return "1.0.0" about = {} current_dir = os.path.abspath(os.path.dirname(__file__))