Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
D
Django-Redis-Cache
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Shared
Django-Redis-Cache
Commits
df0a82f2
Unverified
Commit
df0a82f2
authored
Sep 12, 2018
by
Sean Bleier
Committed by
GitHub
Sep 12, 2018
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #154 from timgraham/django21
Add testing for Django 1.11 - 2.1 and drop testing for older versions
parents
88f2cdf7
d40f6604
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
21 additions
and
13 deletions
+21
-13
.travis.yml
.travis.yml
+10
-8
Makefile
Makefile
+1
-1
README.rst
README.rst
+6
-0
setup.py
setup.py
+4
-4
No files found.
.travis.yml
View file @
df0a82f2
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
...
...
Makefile
View file @
df0a82f2
SHELL
:=
/bin/bash
PACKAGE_NAME
=
redis_cache
DJANGO_VERSION
?=>=
1.1
0a1,<1.11
DJANGO_VERSION
?=>=
1.1
1,<2.2
.PHONY
:
install_requirements
install_requirements
:
requirements*.txt
...
...
README.rst
View file @
df0a82f2
...
...
@@ -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
-----
...
...
setup.py
View file @
df0a82f2
...
...
@@ -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
"
,
],
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment