comparison setup.py @ 497:36c3e9b1d1e3

cm: Upgrade all dependencies and fix deprecation issues.
author Ludovic Chabant <ludovic@chabant.com>
date Sat, 06 Jun 2020 22:24:38 -0700
parents 5d5a6832c4ec
children
comparison
equal deleted inserted replaced
492:eacacee352f7 497:36c3e9b1d1e3
7 with open(os.path.join(os.path.dirname(__file__), fname)) as fp: 7 with open(os.path.join(os.path.dirname(__file__), fname)) as fp:
8 return fp.read() 8 return fp.read()
9 9
10 10
11 install_requires = [ 11 install_requires = [
12 'Flask>=0.12.2', 12 'Flask>=1.1.2',
13 'Flask-Bcrypt>=0.7.1', 13 'Flask-Bcrypt>=0.7.1',
14 'Flask-Login>=0.2.10', 14 'Flask-Login>=0.5.0',
15 'Jinja2>=2.10', 15 'Jinja2>=2.11.2',
16 'Markdown>=3', 16 'Markdown>=3.2.2',
17 'Pygments>=2.2.0', 17 'Pygments>=2.6.1',
18 'SQLAlchemy>=1.2.0', 18 'SQLAlchemy>=1.2.0',
19 'Whoosh>=2.7.4', 19 'Whoosh>=2.7.4',
20 'colorama>=0.3.9', 20 'colorama>=0.4.3',
21 'python-hglib>=1.8', 21 'python-hglib>=2.6.1',
22 'repoze.lru>=0.6' 22 'repoze.lru>=0.7'
23 ] 23 ]
24 tests_require = [ 24 tests_require = [
25 'invoke>=0.22.0' 25 'invoke>=1.4.1'
26 'pytest>=3.3.1' 26 'pytest>=5.4.3'
27 ] 27 ]
28 28
29 29
30 setup( 30 setup(
31 name='Wikked', 31 name='Wikked',