Skip to content

Commit

Permalink
v0.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Koed00 committed Sep 16, 2015
1 parent 57169a7 commit 4d74169
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 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, 7, 0)
VERSION = (0, 7, 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.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.
Expand Down
9 changes: 5 additions & 4 deletions setup.py
Expand Up @@ -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', ],
Expand All @@ -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',
Expand Down

0 comments on commit 4d74169

Please sign in to comment.