Unverified Commit df0a82f2 authored by Sean Bleier's avatar Sean Bleier Committed by GitHub

Merge pull request #154 from timgraham/django21

Add testing for Django 1.11 - 2.1 and drop testing for older versions
parents 88f2cdf7 d40f6604
language: python
python:
- 2.7
- 3.3
- 3.4
- 3.5
- 3.6
env:
- DJANGO_VERSION='>=1.8a1,<1.9'
- DJANGO_VERSION='>=1.9a1,<1.10'
- DJANGO_VERSION='>=1.10a1,<1.11'
- DJANGO_VERSION='>=1.11,<2.0'
- DJANGO_VERSION='>=2.0,<2.1'
- DJANGO_VERSION='>=2.1,<2.2'
matrix:
exclude:
- python: 3.3
env: DJANGO_VERSION='>=1.9a1,<1.10'
- python: 3.3
env: DJANGO_VERSION='>=1.10a1,<1.11'
- python: 2.7
env: DJANGO_VERSION='>=2.0,<2.1'
- python: 2.7
env: DJANGO_VERSION='>=2.1,<2.2'
- python: 3.4
env: DJANGO_VERSION='>=2.1,<2.2'
# command to run tests
install: ./install_redis.sh
script: make test DJANGO_VERSION=$DJANGO_VERSION
......
SHELL := /bin/bash
PACKAGE_NAME=redis_cache
DJANGO_VERSION?=>=1.10a1,<1.11
DJANGO_VERSION?=>=1.11,<2.2
.PHONY: install_requirements
install_requirements: requirements*.txt
......
......@@ -21,6 +21,12 @@ Docs can be found at http://django-redis-cache.readthedocs.org/en/latest/.
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
-----
......
......@@ -13,17 +13,17 @@ setup(
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 1.8",
"Framework :: Django :: 1.9",
"Framework :: Django :: 1.10",
"Framework :: Django :: 1.11",
"Framework :: Django :: 2.0",
"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