comparison setup.py @ 474:98be52d5ac25

install: set upper limit for dependencies versions
author Goffi <goffi@goffi.org>
date Fri, 18 Jun 2021 16:36:22 +0200
parents 8e42048649f7
children c35aa683fa2d
comparison
equal deleted inserted replaced
473:4f923e7e82b6 474:98be52d5ac25
22 import textwrap 22 import textwrap
23 23
24 NAME = 'cagou' 24 NAME = 'cagou'
25 25
26 install_requires = [ 26 install_requires = [
27 'kivy>=2.0.0', 27 'kivy >=2.0.0, <2.1.0',
28 'kivy_garden.modernmenu', 28 'kivy_garden.modernmenu <0.2.0',
29 'pillow', 29 'pillow <8.3',
30 'plyer', 30 'plyer <2.1',
31 'sat>=0.7.0dev0', 31 'sat >=0.8.0b1, <0.9',
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')