ldcheck.py

changeset 114
9ea2549e6171
parent 113
8c2ca8d368d4
child 116
60cac583b5df
equal deleted inserted replaced
113:8c2ca8d368d4 114:9ea2549e6171
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 = (1, 0) 7 version = (1, 0, 9999)
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