From ef7a4273e6aaff0d0b0f2be4ee13815381808795 Mon Sep 17 00:00:00 2001 From: Jaikinator Date: Fri, 22 Sep 2023 21:27:41 +0200 Subject: [PATCH] fixed versioning whichs brokes do to pypi issues --- scraibe/version.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/scraibe/version.py b/scraibe/version.py index b3cf626..bce39ee 100644 --- a/scraibe/version.py +++ b/scraibe/version.py @@ -3,10 +3,9 @@ import subprocess as sp MAJOR = 0 MINOR = 1 -MICRO = 0 -MICRO_POST = 0 +MICRO = 1 ISRELEASED = False -VERSION = '%d.%d.%d.%d' % (MAJOR, MINOR, MICRO, MICRO_POST) +VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO) # Return the git revision as a string # taken from numpy/numpy