From 81fdfa6abeab20469aa2472babb971fc88807ae0 Mon Sep 17 00:00:00 2001 From: ilan Date: Wed, 5 Apr 2017 14:43:44 +0300 Subject: [PATCH] Updates version and supported versions --- README.rst | 2 +- django_q/__init__.py | 2 +- docs/conf.py | 4 ++-- docs/index.rst | 2 +- docs/install.rst | 11 ++++++----- setup.py | 5 +++-- 6 files changed, 14 insertions(+), 12 deletions(-) diff --git a/README.rst b/README.rst index 9d60d01..a7b9a72 100644 --- a/README.rst +++ b/README.rst @@ -31,7 +31,7 @@ Requirements - `Arrow `__ - `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 ~~~~~~~ diff --git a/django_q/__init__.py b/django_q/__init__.py index 2f9a07f..4f3b689 100644 --- a/django_q/__init__.py +++ b/django_q/__init__.py @@ -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' diff --git a/docs/conf.py b/docs/conf.py index 4d60351..c9b158f 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -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. diff --git a/docs/index.rst b/docs/index.rst index 082071c..7fe6af4 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -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: diff --git a/docs/install.rst b/docs/install.rst index ed67ffa..424fa95 100644 --- a/docs/install.rst +++ b/docs/install.rst @@ -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 `__ 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 `__ @@ -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 `__ .. 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 =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', ]