mirror of
https://github.com/django-q2/django-q2.git
synced 2026-09-15 21:47:53 +08:00
Updates version and supported versions
This commit is contained in:
@@ -31,7 +31,7 @@ Requirements
|
||||
- `Arrow <https://github.com/crsmithdev/arrow>`__
|
||||
- `Blessed <https://github.com/jquast/blessed>`__
|
||||
|
||||
Tested with: Python 2.7 & 3.5. Django 1.8.14, 1.9.8 and 1.10rc1
|
||||
Tested with: Python 2.7 & 3.6. Django 1.8.18, 1.10.7 and 1.11
|
||||
|
||||
Brokers
|
||||
~~~~~~~
|
||||
|
||||
@@ -5,7 +5,7 @@ from django import get_version
|
||||
myPath = os.path.dirname(os.path.abspath(__file__))
|
||||
sys.path.insert(0, myPath)
|
||||
|
||||
VERSION = (0, 7, 18)
|
||||
VERSION = (0, 8, 0)
|
||||
|
||||
default_app_config = 'django_q.apps.DjangoQConfig'
|
||||
|
||||
|
||||
@@ -70,9 +70,9 @@ author = 'Ilan Steemers'
|
||||
# built documents.
|
||||
#
|
||||
# The short X.Y version.
|
||||
version = '0.7'
|
||||
version = '0.8'
|
||||
# The full version, including alpha/beta/rc tags.
|
||||
release = '0.7.18'
|
||||
release = '0.8.0'
|
||||
|
||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||
# for a list of supported languages.
|
||||
|
||||
@@ -24,7 +24,7 @@ Features
|
||||
- Rollbar support
|
||||
|
||||
|
||||
Django Q is tested with: Python 2.7 & 3.5. Django 1.8.14, 1.9.8 and 1.10rc1
|
||||
Django Q is tested with: Python 2.7 & 3.6. Django 1.8.18 LTS, 1.10.7 and 1.11
|
||||
|
||||
Contents:
|
||||
|
||||
|
||||
@@ -27,12 +27,12 @@ Installation
|
||||
Requirements
|
||||
------------
|
||||
|
||||
Django Q is tested for Python 2.7 and 3.5
|
||||
Django Q is tested for Python 2.7 and 3.6
|
||||
|
||||
- `Django <https://www.djangoproject.com>`__
|
||||
|
||||
Django Q aims to use as much of Django's standard offerings as possible
|
||||
The code is tested against Django version `1.8.13` and `1.9.7`.
|
||||
The code is tested against Django versions `1.8.18 LTS`, `1.10.7` and `1.11`.
|
||||
|
||||
- `Django-picklefield <https://github.com/gintas/django-picklefield>`__
|
||||
|
||||
@@ -112,12 +112,13 @@ Other known issues are:
|
||||
Python
|
||||
~~~~~~
|
||||
The code is always tested against the latest version of Python 2 and Python 3 and we try to stay compatible with the last two versions of each.
|
||||
Current tests are performed with Python 2.7.10 and 3.5.
|
||||
Current tests are performed with Python 2.7.12 and 3.6.1
|
||||
If you do encounter any regressions with earlier versions, please submit an issue on `github <https://github.com/Koed00/django-q>`__
|
||||
|
||||
.. note::
|
||||
|
||||
Django 1.7.10 or earlier is not compatible with Python 3.5
|
||||
Django releases before 1.11 are not officially supported on Python 3.6
|
||||
|
||||
Open-source packages
|
||||
~~~~~~~~~~~~~~~~~~~~
|
||||
@@ -127,9 +128,9 @@ You can reference the `requirements <https://github.com/Koed00/django-q/blob/mas
|
||||
Django
|
||||
~~~~~~
|
||||
We strive to be compatible with last two major version of Django.
|
||||
At the moment this means we support the 1.8.14 and 1.9.8 releases.
|
||||
At the moment this means we support the 1.8.18 LTS, 1.10.7 and 1.11 releases.
|
||||
|
||||
You might find that Django Q still works fine with Django 1.7, but new releases are no longer tested for it.
|
||||
You might find that Django Q still works fine with Django 1.7 and 1.9, but new releases are no longer tested for it.
|
||||
|
||||
|
||||
|
||||
|
||||
5
setup.py
5
setup.py
@@ -26,7 +26,7 @@ class PyTest(Command):
|
||||
|
||||
setup(
|
||||
name='django-q',
|
||||
version='0.7.18',
|
||||
version='0.8.0',
|
||||
author='Ilan Steemers',
|
||||
author_email='koed0@gmail.com',
|
||||
keywords='django distributed task queue worker scheduler cron redis disque ironmq sqs orm mongodb multiprocessing rollbar',
|
||||
@@ -36,7 +36,7 @@ setup(
|
||||
license='MIT',
|
||||
description='A multiprocessing distributed task queue for Django',
|
||||
long_description=README,
|
||||
install_requires=['django>=1.7', 'django-picklefield', 'blessed', 'arrow', 'future'],
|
||||
install_requires=['django>=1.8', 'django-picklefield', 'blessed', 'arrow', 'future'],
|
||||
test_requires=['pytest', 'pytest-django', ],
|
||||
cmdclass={'test': PyTest},
|
||||
classifiers=[
|
||||
@@ -53,6 +53,7 @@ setup(
|
||||
'Programming Language :: Python :: 3',
|
||||
'Programming Language :: Python :: 3.4',
|
||||
'Programming Language :: Python :: 3.5',
|
||||
'Programming Language :: Python :: 3.6',
|
||||
'Topic :: Internet :: WWW/HTTP',
|
||||
'Topic :: Software Development :: Libraries :: Python Modules',
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user