Release v0.1.4

This commit is contained in:
Adsooi 2022-01-24 18:27:16 +01:00
parent f2a411cadb
commit 671e6e9d29
Signed by: Ad5001
GPG key ID: EF45F9C6AFE20160
10 changed files with 65 additions and 8 deletions

View file

@ -18,12 +18,12 @@
from shutil import which
__VERSION__ = "0.1.4"
is_release = False
is_release = True
# Check if development version, if so get the date of the latest git patch
# and append it to the version string.
if which('git') is not None and not is_release:
if not is_release and which('git') is not None:
from os.path import realpath, join, dirname, exists
from subprocess import check_output
from datetime import datetime