Skip to content

Commit

Permalink
Confirm support for Django 3.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
felixxm committed May 22, 2020
1 parent 966311f commit 6694774
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 4 deletions.
11 changes: 8 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ env:
- DJANGO_VERSION='>=2.0,<2.1'
- DJANGO_VERSION='>=2.1,<2.2'
- DJANGO_VERSION='>=2.2,<3.0'
- DJANGO_VERSION='>=3.0a1,<3.1'
- DJANGO_VERSION='>=3.0,<3.1'
- DJANGO_VERSION='>=3.1a1,<3.2'
matrix:
exclude:
- python: 2.7
Expand All @@ -20,11 +21,15 @@ matrix:
- python: 2.7
env: DJANGO_VERSION='>=2.2,<3.0'
- python: 2.7
env: DJANGO_VERSION='>=3.0a1,<3.1'
env: DJANGO_VERSION='>=3.0,<3.1'
- python: 2.7
env: DJANGO_VERSION='>=3.1a1,<3.2'
- python: 3.5
env: DJANGO_VERSION='<2.0'
- python: 3.5
env: DJANGO_VERSION='>=3.0a1,<3.1'
env: DJANGO_VERSION='>=3.0,<3.1'
- python: 3.5
env: DJANGO_VERSION='>=3.1a1,<3.2'
- python: 3.6
env: DJANGO_VERSION='<2.0'
- python: 3.7
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
SHELL := /bin/bash

PACKAGE_NAME=redis_cache
DJANGO_VERSION?=>=1.11,<3.1
DJANGO_VERSION?=>=1.11,<3.2

.PHONY: install_requirements
install_requirements: requirements*.txt
Expand Down
5 changes: 5 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@ Docs can be found at http://django-redis-cache.readthedocs.org/en/latest/.
Changelog
=========

X.Y.Z
-----

* Confirms support for Django 3.1 (no code changes required).

2.1.1
-----

Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,6 @@
"Framework :: Django :: 2.1",
"Framework :: Django :: 2.2",
"Framework :: Django :: 3.0",
"Framework :: Django :: 3.1",
],
)

0 comments on commit 6694774

Please sign in to comment.