comparison setup.py @ 304:00e2bcf0d9df

install: set minimal version of sat to dev one: dev0 version is used as minimal one, so 0.6.x won't be used, but the repository version will match, avoiding trouble when repository version of Cagou is installed.
author Goffi <goffi@goffi.org>
date Wed, 10 Jul 2019 08:38:39 +0200
parents 86b1cd8121dd
children 772c170b47a9
comparison
equal deleted inserted replaced
303:fe8639e64c69 304:00e2bcf0d9df
26 26
27 install_requires = [ 27 install_requires = [
28 'kivy>=1.10.0', 28 'kivy>=1.10.0',
29 'pillow', 29 'pillow',
30 'plyer', 30 'plyer',
31 'sat>=0.7.0b1.post1', 31 'sat>=0.7.0dev0',
32 ] 32 ]
33 33
34 with open(os.path.join(NAME, 'VERSION')) as f: 34 with open(os.path.join(NAME, 'VERSION')) as f:
35 VERSION = f.read().strip() 35 VERSION = f.read().strip()
36 is_dev_version = VERSION.endswith('D') 36 is_dev_version = VERSION.endswith('D')