1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
diff --git setup.py setup.py
index 17eb71e..1939a2c 100644
--- setup.py
+++ setup.py
@@ -33,23 +33,23 @@ __platform__ = platform.system()
is_windows = __platform__ in _get_meta_var('PLATFORM_WIN', _metadata)
requirements = [
- "waitress==0.8.1",
- "webob==1.0.8",
+ "waitress>=0.8.1",
+ "webob>=1.0.8",
"Pylons==1.0.0",
- "Beaker==1.6.4",
+ "Beaker>=1.6.4",
"WebHelpers==1.3",
"formencode==1.2.4",
- "SQLAlchemy==0.7.9",
- "Mako==0.7.3",
+ "SQLAlchemy>=0.7.9",
+ "Mako>=0.7.3",
"pygments>=1.5",
"whoosh>=2.4.0,<2.5",
"celery>=2.2.5,<2.3",
"babel",
- "python-dateutil>=1.5.0,<2.0.0",
+ "python-dateutil>=1.5.0, != 2.0",
"dulwich>=0.8.7,<0.9.0",
- "markdown==2.2.1",
+ "markdown>=2.2.1",
"docutils==0.8.1",
- "simplejson==2.5.2",
+ "simplejson>=2.5.2",
"mock",
]
@@ -60,10 +60,10 @@ if sys.version_info < (2, 7):
requirements.append("unittest2")
if is_windows:
- requirements.append("mercurial==2.4.1")
+ requirements.append("mercurial>=2.4.1")
else:
requirements.append("py-bcrypt")
- requirements.append("mercurial==2.4.1")
+ requirements.append("mercurial>=2.4.1")
dependency_links = [
|