From eff51cf9d1985593fddf1b504c97502ffad119de Mon Sep 17 00:00:00 2001 From: Ilan Steemers Date: Mon, 7 Sep 2015 11:50:00 +0200 Subject: [PATCH] v0.6.1 pinning django-picklefield --- django_q/__init__.py | 2 +- docs/conf.py | 2 +- setup.py | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/django_q/__init__.py b/django_q/__init__.py index 9fc91f11..5e04c6e5 100644 --- a/django_q/__init__.py +++ b/django_q/__init__.py @@ -9,6 +9,6 @@ from .cluster import Cluster from .status import Stat -VERSION = (0, 6, 0) +VERSION = (0, 6, 1) default_app_config = 'django_q.apps.DjangoQConfig' diff --git a/docs/conf.py b/docs/conf.py index 4140e5c6..7188024d 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -72,7 +72,7 @@ # The short X.Y version. version = '0.6' # The full version, including alpha/beta/rc tags. -release = '0.6.0' +release = '0.6.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index 1631e60e..833492aa 100644 --- a/setup.py +++ b/setup.py @@ -26,7 +26,7 @@ def run(self): setup( name='django-q', - version='0.6.0', + version='0.6.1', author='Ilan Steemers', author_email='koed00@gmail.com', keywords='django task queue worker redis disque multiprocessing', @@ -36,7 +36,7 @@ def run(self): license='MIT', description='A multiprocessing task queue for Django', long_description=README, - install_requires=['django>=1.7', 'django-picklefield', 'blessed', 'arrow', 'future'], + install_requires=['django>=1.7', 'django-picklefield===0.3.1', 'blessed', 'arrow', 'future'], test_requires=['pytest', 'pytest-django', ], cmdclass={'test': PyTest}, classifiers=[