Skip to content

Commit

Permalink
v0.6.1
Browse files Browse the repository at this point in the history
pinning django-picklefield
  • Loading branch information
Koed00 committed Sep 7, 2015
1 parent d6d4a2b commit eff51cf
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion django_q/__init__.py
Expand Up @@ -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'
2 changes: 1 addition & 1 deletion docs/conf.py
Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -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',
Expand All @@ -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=[
Expand Down

0 comments on commit eff51cf

Please sign in to comment.