comparison setup.py @ 7978:7433775cc53b

page: minimal change to move from webhelpers.paginate to paginate webhelpers is dead and doesn't work with py3. paginate is not very actively maintained, but it is the natural successor to webhelpers.paginate, it seems stable, and it works with py3. This is a minimal change that seems to work. It preserves existing tech debt ... and adds a little bit more. It will be cleaned up next. webhelpers.paginate had built-in SqlAlchemy support - now we have to handle it explicitly.
author Mads Kiilerich <mads@kiilerich.com>
date Thu, 07 Nov 2019 03:12:41 +0100
parents 8e0efe7b3b10
children a99b7e388979
comparison
equal deleted inserted replaced
7977:2323e2bb2797 7978:7433775cc53b
67 "decorator >= 3.3.2, < 4.5", 67 "decorator >= 3.3.2, < 4.5",
68 "Paste >= 2.0.3, < 3.1", 68 "Paste >= 2.0.3, < 3.1",
69 "bleach >= 3.0, < 3.2", 69 "bleach >= 3.0, < 3.2",
70 "Click >= 7.0, < 8", 70 "Click >= 7.0, < 8",
71 "ipaddr >= 2.1.10, < 2.3", 71 "ipaddr >= 2.1.10, < 2.3",
72 "paginate >= 0.5, < 0.6",
73 "paginate_sqlalchemy >= 0.3.0, < 0.4",
72 ] 74 ]
73 75
74 if not is_windows: 76 if not is_windows:
75 requirements.append("bcrypt >= 3.1.0, < 3.2") 77 requirements.append("bcrypt >= 3.1.0, < 3.2")
76 78