Commit d40f6604 authored by Tim Graham's avatar Tim Graham

Add testing for Django 1.11 - 2.1 and drop testing for older versions

parent b91f7c1b
language: python language: python
python: python:
- 2.7 - 2.7
- 3.3
- 3.4 - 3.4
- 3.5 - 3.5
- 3.6
env: env:
- DJANGO_VERSION='>=1.8a1,<1.9' - DJANGO_VERSION='>=1.11,<2.0'
- DJANGO_VERSION='>=1.9a1,<1.10' - DJANGO_VERSION='>=2.0,<2.1'
- DJANGO_VERSION='>=1.10a1,<1.11' - DJANGO_VERSION='>=2.1,<2.2'
matrix: matrix:
exclude: exclude:
- python: 3.3 - python: 2.7
env: DJANGO_VERSION='>=1.9a1,<1.10' env: DJANGO_VERSION='>=2.0,<2.1'
- python: 3.3 - python: 2.7
env: DJANGO_VERSION='>=1.10a1,<1.11' env: DJANGO_VERSION='>=2.1,<2.2'
- python: 3.4
env: DJANGO_VERSION='>=2.1,<2.2'
# command to run tests # command to run tests
install: ./install_redis.sh install: ./install_redis.sh
script: make test DJANGO_VERSION=$DJANGO_VERSION script: make test DJANGO_VERSION=$DJANGO_VERSION
......
SHELL := /bin/bash SHELL := /bin/bash
PACKAGE_NAME=redis_cache PACKAGE_NAME=redis_cache
DJANGO_VERSION?=>=1.10a1,<1.11 DJANGO_VERSION?=>=1.11,<2.2
.PHONY: install_requirements .PHONY: install_requirements
install_requirements: requirements*.txt install_requirements: requirements*.txt
......
...@@ -21,6 +21,12 @@ Docs can be found at http://django-redis-cache.readthedocs.org/en/latest/. ...@@ -21,6 +21,12 @@ Docs can be found at http://django-redis-cache.readthedocs.org/en/latest/.
Changelog Changelog
========= =========
1.8.0
-----
* Confirms support for Django 1.11, 2.0, and 2.1 (no code changes required).
* Drops support for Django < 1.11.
1.7.1 1.7.1
----- -----
......
...@@ -13,17 +13,17 @@ setup( ...@@ -13,17 +13,17 @@ setup(
classifiers=[ classifiers=[
"Programming Language :: Python", "Programming Language :: Python",
"Programming Language :: Python :: 2.7", "Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: BSD License", "License :: OSI Approved :: BSD License",
"Operating System :: OS Independent", "Operating System :: OS Independent",
"Topic :: Software Development :: Libraries", "Topic :: Software Development :: Libraries",
"Topic :: Utilities", "Topic :: Utilities",
"Environment :: Web Environment", "Environment :: Web Environment",
"Framework :: Django", "Framework :: Django",
"Framework :: Django :: 1.8", "Framework :: Django :: 1.11",
"Framework :: Django :: 1.9", "Framework :: Django :: 2.0",
"Framework :: Django :: 1.10", "Framework :: Django :: 2.1",
], ],
) )
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment