From 62350e075e6a66166602f4490ec4c8d4d3176fca Mon Sep 17 00:00:00 2001 From: rcervinoucm Date: Fri, 24 May 2024 14:24:54 +0200 Subject: [PATCH] Update version.py --- ctlearn/version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ctlearn/version.py b/ctlearn/version.py index 38d5aae1..48391ae0 100644 --- a/ctlearn/version.py +++ b/ctlearn/version.py @@ -82,7 +82,7 @@ def get_git_describe_version(abbrev=7): """return the string output of git desribe""" try: with open(devnull, "w") as fnull: - arguments = ['git', '--version'] + arguments = ['git', 'describe', '--tags', 'https://github.com/ctlearn-project/ctlearn'] print('HOLA1') cmd = 'git describe --tags --match [0-9]*'.split() # print(check_output(cmd, shell=True).decode().strip())