ldcheck.py

changeset 113
8c2ca8d368d4
parent 109
b627f8963a84
child 114
9ea2549e6171
equal deleted inserted replaced
112:d997456985b2 113:8c2ca8d368d4
2 from sys import version_info 2 from sys import version_info
3 if version_info < (3, 4): 3 if version_info < (3, 4):
4 raise RuntimeError('Python 3.4 or newer required') 4 raise RuntimeError('Python 3.4 or newer required')
5 5
6 appname = 'ldcheck' 6 appname = 'ldcheck'
7 version = (0, 0, 9999) 7 version = (1, 0)
8 version_string = str.join('.', map(str, version)) 8 version_string = str.join('.', map(str, version))
9 9
10 from colours import load_colours 10 from colours import load_colours
11 from geometry import * 11 from geometry import *
12 from pathlib import Path 12 from pathlib import Path

mercurial