From 4d7416914c6bcff8875a66c0f660b43092e4b08a Mon Sep 17 00:00:00 2001 From: Ilan Steemers Date: Wed, 16 Sep 2015 18:50:33 +0200 Subject: [PATCH] v0.7.1 --- django_q/__init__.py | 2 +- docs/conf.py | 2 +- setup.py | 9 +++++---- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/django_q/__init__.py b/django_q/__init__.py index 7059eff8..b4ae1477 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, 7, 0) +VERSION = (0, 7, 1) default_app_config = 'django_q.apps.DjangoQConfig' diff --git a/docs/conf.py b/docs/conf.py index a6ee0a94..94f5c11d 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -72,7 +72,7 @@ # The short X.Y version. version = '0.7' # The full version, including alpha/beta/rc tags. -release = '0.7.0' +release = '0.7.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 93ed907c..d486c9fc 100644 --- a/setup.py +++ b/setup.py @@ -26,15 +26,15 @@ def run(self): setup( name='django-q', - version='0.7.0', + version='0.7.1', author='Ilan Steemers', author_email='koed00@gmail.com', - keywords='django task queue worker redis disque multiprocessing', + keywords='django distributed task queue worker redis disque ironmq sqs orm multiprocessing', packages=['django_q'], include_package_data=True, url='https://django-q.readthedocs.org', license='MIT', - description='A multiprocessing task queue for Django', + description='A multiprocessing distributed task queue for Django', long_description=README, install_requires=['django>=1.7', 'django-picklefield', 'blessed', 'arrow', 'future'], test_requires=['pytest', 'pytest-django', ], @@ -45,7 +45,8 @@ def run(self): 'Framework :: Django', 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License', - 'Operating System :: OS Independent', + 'Operating System :: POSIX', + 'Operating System :: MacOS', 'Programming Language :: Python', 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.7',