comparison setup.py @ 7745:624971c4d246

setup: bump formencode minimum version to 1.3.0 The formencode version range included both 1.2.x and 1.3.x releases. However, since 1.3.0, _to_python and validate_python are deprecated and renamed to _convert_to_python and _validate_python, respectively. With current pytest, these (long) deprecation warnings are shown in the test logs. There are two options: - restrict maximum version to 1.2.x - bump minimum version to 1.3.x In this commit we choose the latter approach, going towards the future rather than the past.
author Thomas De Schampheleire <thomas.de_schampheleire@nokia.com>
date Sun, 16 Jun 2019 20:16:44 +0200
parents b302d4254bd0
children a7d7157eca8e
comparison
equal deleted inserted replaced
7744:b5fe8bc0b939 7745:624971c4d246
42 "backlash >= 0.1.2, < 1", 42 "backlash >= 0.1.2, < 1",
43 "TurboGears2 >= 2.3.10, < 2.4", # TODO: 2.4 drops Pylons compatibility 43 "TurboGears2 >= 2.3.10, < 2.4", # TODO: 2.4 drops Pylons compatibility
44 "tgext.routes >= 0.2.0, < 1", 44 "tgext.routes >= 0.2.0, < 1",
45 "Beaker >= 1.7.0, < 2", 45 "Beaker >= 1.7.0, < 2",
46 "WebHelpers >= 1.3, < 1.4", 46 "WebHelpers >= 1.3, < 1.4",
47 "FormEncode >= 1.2.4, < 1.4", 47 "FormEncode >= 1.3.0, < 1.4",
48 "SQLAlchemy >= 1.1, < 1.4", 48 "SQLAlchemy >= 1.1, < 1.4",
49 "Mako >= 0.9.0, < 1.1", 49 "Mako >= 0.9.0, < 1.1",
50 "Pygments >= 2.0, < 2.5", 50 "Pygments >= 2.0, < 2.5",
51 "Whoosh >= 2.5.0, < 2.8", 51 "Whoosh >= 2.5.0, < 2.8",
52 "celery >= 3.1, < 4.0", # TODO: celery 4 doesn't work 52 "celery >= 3.1, < 4.0", # TODO: celery 4 doesn't work