From 3e163035f431fa28e4f4d3bb7abfc4e8bccbce3e Mon Sep 17 00:00:00 2001 From: Eric Kolve Date: Tue, 2 Jun 2020 16:58:23 -0700 Subject: [PATCH 1/4] Update setup.py --- setup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.py b/setup.py index 9d8e66b..8f3957a 100644 --- a/setup.py +++ b/setup.py @@ -40,3 +40,5 @@ 'requests' ], include_package_data=False) + + From 34daa318f282a1177255b7684c8942f17b493b74 Mon Sep 17 00:00:00 2001 From: Eric Kolve Date: Tue, 2 Jun 2020 16:58:40 -0700 Subject: [PATCH 2/4] Update setup.py testing 1234 --- setup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.py b/setup.py index 8f3957a..3e4d7df 100644 --- a/setup.py +++ b/setup.py @@ -9,6 +9,8 @@ .strip() ) + + if not re.match(r'^[0-9]+\.[0-9]+\.[0-9]+', git_tag_version): raise Exception("Invalid git tag version number: %s" % git_tag_version) From 84a3005ad587ffa00aca946d24634cf797100358 Mon Sep 17 00:00:00 2001 From: Eric Kolve Date: Wed, 3 Jun 2020 15:36:15 -0700 Subject: [PATCH 3/4] Update test.py --- test.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test.py b/test.py index eb534b9..63c7bda 100644 --- a/test.py +++ b/test.py @@ -1,2 +1,4 @@ print("test2") print("test") + + From ce88e113e26ea42aac942f0a0ec49df13443fcb3 Mon Sep 17 00:00:00 2001 From: Eric Kolve Date: Fri, 5 Jun 2020 15:27:57 -0700 Subject: [PATCH 4/4] Update setup.py --- setup.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup.py b/setup.py index 3e4d7df..ff6a9d1 100644 --- a/setup.py +++ b/setup.py @@ -3,6 +3,9 @@ import subprocess + + + git_tag_version = ( subprocess.check_output("git describe --tags", shell=True) .decode("ascii")