##// END OF EJS Templates
jupyter-rendering: add celery patch, to support dateutil change...
marcink -
r1489:d29f4cdc default
parent child Browse files
Show More
@@ -0,0 +1,12 b''
1 diff -rup celery-2.2.10-orig/setup.py celery-2.2.10/setup.py
2 --- celery-2.2.10-orig/setup.py 2017-02-25 15:30:34.000000000 +0100
3 +++ celery-2.2.10/setup.py 2017-02-25 15:30:34.000000000 +0100
4 @@ -48,7 +48,7 @@ try:
5 except ImportError:
6 install_requires.append("importlib")
7 install_requires.extend([
8 - "python-dateutil>=1.5.0,<2.0.0",
9 + "python-dateutil>=1.5.0,<2.2.0",
10 "anyjson>=0.3.1",
11 "kombu>=1.1.2,<2.0.0",
12 "pyparsing>=1.5.0,<2.0.0",
@@ -61,6 +61,14 b' self: super: {'
61 ];
61 ];
62 });
62 });
63
63
64 celery = super.celery.override (attrs: {
65 # The current version of kombu needs some patching to work with the
66 # other libs. Should be removed once we update celery and kombu.
67 patches = [
68 ./patch-celery-dateutil.diff
69 ];
70 });
71
64 kombu = super.kombu.override (attrs: {
72 kombu = super.kombu.override (attrs: {
65 # The current version of kombu needs some patching to work with the
73 # The current version of kombu needs some patching to work with the
66 # other libs. Should be removed once we update celery and kombu.
74 # other libs. Should be removed once we update celery and kombu.
General Comments 0
You need to be logged in to leave comments. Login now