2 Commits

Author SHA1 Message Date
Mark Nauwelaerts
ebd5bdb111 Release v1.0.3.2 2022-02-23 23:16:12 +01:00
Paul Wise
00ac711fb2 Fix syntax error caused by extra semicolon
Fixes: commit 4d38bff053
2022-02-23 23:15:30 +01:00
2 changed files with 2 additions and 2 deletions

View File

@@ -14,7 +14,7 @@ build:
PYTHON=python2 ; \
elif python -c 'import mercurial' 2> /dev/null ; then \
PYTHON=python ; \
else ; \
else \
echo 'Python with Mercurial not available' >&2 ; \
exit 1 ; \
fi ; \

View File

@@ -3,7 +3,7 @@
import setuptools
# strip leading v
version = 'v1.0.3.1'[1:]
version = 'v1.0.3.2'[1:]
# check for released version
assert (len(version) > 0)