summaryrefslogtreecommitdiff
blob: 6df08727d125c8cb5868482803aae88ea74e8620 (plain)
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
From ae721b6947e7e05f26dc8438fe61106b5e993e12 Mon Sep 17 00:00:00 2001
From: Ask Solem <ask@celeryproject.org>
Date: Fri, 17 Aug 2012 16:16:08 +0100
Subject: [PATCH] Now depends on dateutil-2.1 which supports Py2.6, 2.7 and
 3.2+. Closes #915

---
 requirements/default-py3k.txt |    2 +-
 requirements/default.txt      |    2 +-
 setup.cfg                     |    2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/requirements/default-py3k.txt b/requirements/default-py3k.txt
index d68a7bd..a8bd31f 100644
--- a/requirements/default-py3k.txt
+++ b/requirements/default-py3k.txt
@@ -1,4 +1,4 @@
 billiard>=2.7.3.17
-python-dateutil>=2.0
+python-dateutil>=2.1
 pytz
 kombu>=2.4.7,<3.0
diff --git a/requirements/default.txt b/requirements/default.txt
index 2f50735..855cfc7 100644
--- a/requirements/default.txt
+++ b/requirements/default.txt
@@ -1,3 +1,3 @@
 billiard>=2.7.3.17
-python-dateutil>=1.5,<2.0
+python-dateutil>=2.1
 kombu>=2.4.7,<3.0
diff --git a/setup.cfg b/setup.cfg
index 0e537f8..5ac1409 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -15,7 +15,7 @@
 
 [bdist_rpm]
 requires = billiard >= 2.7.3.18
-	python-dateutil >= 1.5
+	python-dateutil >= 2.1
 	kombu >= 2.4.8
 
 [egg_info]
-- 
1.7.10