##// END OF EJS Templates
setup: bump all upper pip dependency versions to minor updates of what currently is available and testable on pypi...
Mads Kiilerich -
r7294:55fc0bcc default
parent child Browse files
Show More
@@ -1,10 +1,10 b''
1 Babel >= 0.9.6, < 2.4
1 Babel >= 0.9.6, < 2.7
2 waitress >= 0.8.8, < 1.0
2 pytest >= 3.3.0, < 3.8
3 pytest >= 3.3.0, < 4
3 pytest-runner < 4.3
4 pytest-runner
4 pytest-sugar >= 0.7.0, < 0.10
5 pytest-sugar >= 0.7.0
5 pytest-benchmark < 3.2
6 pytest-benchmark
6 pytest-localserver < 0.5
7 pytest-localserver
7 mock < 2.1
8 mock
8 Sphinx < 1.8
9 Sphinx
9 WebTest < 2.1
10 WebTest < 3
10 WebOb >= 1.7, < 1.8 # turbogears2 2.3.12 requires WebOb<1.8.0, WebTest has WebOb>=1.2
@@ -35,31 +35,31 b" callback = lambda V: ('.'.join(map(str, "
35 is_windows = __platform__ in ['Windows']
35 is_windows = __platform__ in ['Windows']
36
36
37 requirements = [
37 requirements = [
38 "alembic >= 0.8.0, < 0.9",
38 "alembic >= 0.8.0, < 1.1",
39 "gearbox < 1",
39 "gearbox < 1",
40 "waitress >= 0.8.8, < 1.0",
40 "waitress >= 0.8.8, < 1.2",
41 "WebOb >= 1.7, < 1.8.0", # TurboGears2 doesn't support 1.8.0
41 "WebOb >= 1.7, < 1.8", # turbogears2 2.3.12 requires WebOb<1.8.0
42 "backlash >= 0.1.2, < 1.0.0",
42 "backlash >= 0.1.2, < 1",
43 "TurboGears2 >= 2.3.10, < 3.0.0",
43 "TurboGears2 >= 2.3.10, < 3",
44 "tgext.routes >= 0.2.0, < 1.0.0",
44 "tgext.routes >= 0.2.0, < 1",
45 "Beaker >= 1.7.0, < 2",
45 "Beaker >= 1.7.0, < 2",
46 "WebHelpers == 1.3",
46 "WebHelpers >= 1.3, < 1.4",
47 "FormEncode >= 1.2.4, <= 1.2.6",
47 "FormEncode >= 1.2.4, < 1.4",
48 "SQLAlchemy >= 1.1, < 1.2",
48 "SQLAlchemy >= 1.1, < 1.3",
49 "Mako >= 0.9.0, <= 1.0.0",
49 "Mako >= 0.9.0, < 1.1",
50 "Pygments >= 1.5",
50 "Pygments >= 1.5, < 2.3",
51 "Whoosh >= 2.5.0, <= 2.5.7",
51 "Whoosh >= 2.5.0, < 2.8",
52 "celery >= 3.1, < 4.0", # celery 4 doesn't work
52 "celery >= 3.1, < 4.0", # celery 4 doesn't work
53 "Babel >= 0.9.6, < 2.4",
53 "Babel >= 0.9.6, < 2.7",
54 "python-dateutil >= 1.5.0, < 2.0.0",
54 "python-dateutil >= 1.5.0, < 2.8",
55 "Markdown == 2.2.1",
55 "Markdown >= 2.2.1, < 2.7",
56 "docutils >= 0.8.1",
56 "docutils >= 0.8.1, < 0.15",
57 "URLObject == 2.3.4",
57 "URLObject >= 2.3.4, < 2.5",
58 "Routes >= 1.13, < 2",
58 "Routes >= 1.13, < 2",
59 "dulwich >= 0.14.1",
59 "dulwich >= 0.14.1, < 0.20",
60 "mercurial >= 4.1.1, < 4.8",
60 "mercurial >= 4.1.1, < 4.8",
61 "decorator >= 3.3.2",
61 "decorator >= 3.3.2, < 4.4",
62 "Paste >= 2.0.3, < 3.0",
62 "Paste >= 2.0.3, < 3",
63 ]
63 ]
64
64
65 if sys.version_info < (2, 7):
65 if sys.version_info < (2, 7):
@@ -67,7 +67,7 b' if sys.version_info < (2, 7):'
67 requirements.append("argparse")
67 requirements.append("argparse")
68
68
69 if not is_windows:
69 if not is_windows:
70 requirements.append("bcrypt >= 3.1.0")
70 requirements.append("bcrypt >= 3.1.0, < 3.2")
71
71
72 dependency_links = [
72 dependency_links = [
73 ]
73 ]
General Comments 0
You need to be logged in to leave comments. Login now