Tidy up a little.
authorCarl Hetherington <cth@carlh.net>
Fri, 8 Oct 2021 10:53:46 +0000 (12:53 +0200)
committerCarl Hetherington <cth@carlh.net>
Fri, 8 Oct 2021 10:53:46 +0000 (12:53 +0200)
wscript

diff --git a/wscript b/wscript
index 2c846251bcaaf1e5a27172cd09a0030f8d7dc33a..c1401376bca6cbdc13caefea37800f742c07d772 100644 (file)
--- a/wscript
+++ b/wscript
@@ -22,6 +22,7 @@ import shlex
 from waflib import Context
 
 APPNAME = 'libsub'
+libdcp_version = '1.8.2'
 
 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]
@@ -33,8 +34,6 @@ else:
 
 API_VERSION = '-1.0'
 
-libdcp_version = '1.8.2'
-
 try:
     from subprocess import STDOUT, check_output, CalledProcessError
 except ImportError: