This commit is contained in:
Ilan Steemers
2015-09-29 22:59:40 +02:00
parent d478911160
commit 07a7851b54
3 changed files with 4 additions and 4 deletions

View File

@@ -5,13 +5,13 @@ from django import get_version
myPath = os.path.dirname(os.path.abspath(__file__))
sys.path.insert(0, myPath)
VERSION = (0, 7, 6)
VERSION = (0, 7, 7)
default_app_config = 'django_q.apps.DjangoQConfig'
# root imports will slowly be deprecated.
# please import from the relevant sub modules
if get_version().split('.')[1][0] == '9':
if get_version().split('.')[1][0] != '9':
from .tasks import async, schedule, result, result_group, fetch, fetch_group, count_group, delete_group, queue_size
from .models import Task, Schedule, Success, Failure
from .cluster import Cluster

View File

@@ -72,7 +72,7 @@ author = 'Ilan Steemers'
# The short X.Y version.
version = '0.7'
# The full version, including alpha/beta/rc tags.
release = '0.7.6'
release = '0.7.7'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

View File

@@ -26,7 +26,7 @@ class PyTest(Command):
setup(
name='django-q',
version='0.7.6',
version='0.7.7',
author='Ilan Steemers',
author_email='koed0@gmail.com',
keywords='django distributed task queue worker redis disque ironmq sqs orm mongodb multiprocessing',