##// END OF EJS Templates
python: workaround Python 2.7.11 incompatibility in the celery dependency kombu
Mads Kiilerich -
r5595:2189802d stable
parent child Browse files
Show More
@@ -93,3 +93,9 b' if len(VERSION) > 3:'
93 __version__ += VERSION[4]
93 __version__ += VERSION[4]
94 else:
94 else:
95 __version__ += '0'
95 __version__ += '0'
96
97 # Hack for making the celery dependency kombu==1.5.1 compatible with Python
98 # 2.7.11 which has https://hg.python.org/releases/2.7.11/rev/24bdc4940e81
99 import uuid
100 if not hasattr(uuid, '_uuid_generate_random'):
101 uuid._uuid_generate_random = None
General Comments 0
You need to be logged in to leave comments. Login now