From a335df0635d7db909787bf4866cd557d4519cd7b Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Tue, 12 Mar 2019 00:36:40 +0000 Subject: Bump deps and fix string decoding. --- wscript | 5 ----- 1 file changed, 5 deletions(-) (limited to 'wscript') diff --git a/wscript b/wscript index 55f162a..8b5169b 100644 --- a/wscript +++ b/wscript @@ -26,11 +26,6 @@ APPNAME = 'libsub' this_version = subprocess.Popen(shlex.split('git tag -l --points-at HEAD'), stdout=subprocess.PIPE).communicate()[0] last_version = subprocess.Popen(shlex.split('git describe --tags --abbrev=0'), stdout=subprocess.PIPE).communicate()[0] -if isinstance(this_version, bytes): - this_version = this_version.decode('UTF-8') -if isinstance(last_version, bytes): - last_version = last_version.decode('UTF-8') - if this_version == '': VERSION = '%sdevel' % last_version[1:].strip() else: -- cgit v1.2.3