Skip to content

Commit 0a085f8

Browse files
authored
Merge pull request sebleier#191 from felixxm/django31
Confirm support for Django 3.1.
2 parents cabfcb2 + 6694774 commit 0a085f8

File tree

4 files changed

+16
-4
lines changed

4 files changed

+16
-4
lines changed

.travis.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ env:
1010
- DJANGO_VERSION='>=2.0,<2.1'
1111
- DJANGO_VERSION='>=2.1,<2.2'
1212
- DJANGO_VERSION='>=2.2,<3.0'
13-
- DJANGO_VERSION='>=3.0a1,<3.1'
13+
- DJANGO_VERSION='>=3.0,<3.1'
14+
- DJANGO_VERSION='>=3.1a1,<3.2'
1415
matrix:
1516
exclude:
1617
- python: 2.7
@@ -20,11 +21,15 @@ matrix:
2021
- python: 2.7
2122
env: DJANGO_VERSION='>=2.2,<3.0'
2223
- python: 2.7
23-
env: DJANGO_VERSION='>=3.0a1,<3.1'
24+
env: DJANGO_VERSION='>=3.0,<3.1'
25+
- python: 2.7
26+
env: DJANGO_VERSION='>=3.1a1,<3.2'
2427
- python: 3.5
2528
env: DJANGO_VERSION='<2.0'
2629
- python: 3.5
27-
env: DJANGO_VERSION='>=3.0a1,<3.1'
30+
env: DJANGO_VERSION='>=3.0,<3.1'
31+
- python: 3.5
32+
env: DJANGO_VERSION='>=3.1a1,<3.2'
2833
- python: 3.6
2934
env: DJANGO_VERSION='<2.0'
3035
- python: 3.7

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
SHELL := /bin/bash
22

33
PACKAGE_NAME=redis_cache
4-
DJANGO_VERSION?=>=1.11,<3.1
4+
DJANGO_VERSION?=>=1.11,<3.2
55

66
.PHONY: install_requirements
77
install_requirements: requirements*.txt

README.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,11 @@ Docs can be found at http://django-redis-cache.readthedocs.org/en/latest/.
2121
Changelog
2222
=========
2323

24+
X.Y.Z
25+
-----
26+
27+
* Confirms support for Django 3.1 (no code changes required).
28+
2429
2.1.1
2530
-----
2631

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,7 @@
2727
"Framework :: Django :: 2.0",
2828
"Framework :: Django :: 2.1",
2929
"Framework :: Django :: 2.2",
30+
"Framework :: Django :: 3.0",
31+
"Framework :: Django :: 3.1",
3032
],
3133
)

0 commit comments

Comments
 (0)