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
f25a15ce
Commit
f25a15ce
authored
Feb 19, 2019
by
Sean Bleier
Browse files
Options
Browse Files
Download
Plain Diff
Merging Tim Graham's branch and fixing conflicts.
parents
e76d9c10
bcc04618
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
14 additions
and
2 deletions
+14
-2
.travis.yml
.travis.yml
+9
-0
Makefile
Makefile
+1
-1
README.rst
README.rst
+1
-0
requirements-dev.txt
requirements-dev.txt
+1
-1
setup.py
setup.py
+2
-0
No files found.
.travis.yml
View file @
f25a15ce
dist
:
xenial
language
:
python
python
:
-
2.7
-
3.5
-
3.6
-
3.7
env
:
-
DJANGO_VERSION='>=1.11,<2.0'
-
DJANGO_VERSION='>=2.0,<2.1'
-
DJANGO_VERSION='>=2.1,<2.2'
-
DJANGO_VERSION='>=2.2a1,<3.0'
matrix
:
exclude
:
-
python
:
2.7
env
:
DJANGO_VERSION='>=2.0,<2.1'
-
python
:
2.7
env
:
DJANGO_VERSION='>=2.1,<2.2'
-
python
:
2.7
env
:
DJANGO_VERSION>=2.2a1,<3.0'
-
python
:
3.4
env
:
DJANGO_VERSION='>=2.1,<2.2'
-
python
:
3.4
env
:
DJANGO_VERSION='>=2.2a1,<3.0'
# command to run tests
install
:
./install_redis.sh
script
:
make test DJANGO_VERSION=$DJANGO_VERSION
...
...
Makefile
View file @
f25a15ce
SHELL
:=
/bin/bash
PACKAGE_NAME
=
redis_cache
DJANGO_VERSION
?=>=
1.11,<
2.2
DJANGO_VERSION
?=>=
1.11,<
3.0
.PHONY
:
install_requirements
install_requirements
:
requirements*.txt
...
...
README.rst
View file @
f25a15ce
...
...
@@ -29,6 +29,7 @@ Changelog
* Drops support for Python 3.4.
* Removes custom ``expire`` method in lieu of Django's ``touch``.
* Removes ``CacheKey`` in favor of string literals.
* Adds testing for Django 2.2 and Python 3.7 (no code changes required).
1.8.0
...
...
requirements-dev.txt
View file @
f25a15ce
...
...
@@ -2,4 +2,4 @@ hiredis==0.2.0
django-nose==1.4.4
nose==1.3.6
msgpack-python==0.4.6
pyyaml
>=4.2b1
pyyaml
==3.13
setup.py
View file @
f25a15ce
...
...
@@ -16,6 +16,7 @@ setup(
"Programming Language :: Python :: 3.4"
,
"Programming Language :: Python :: 3.5"
,
"Programming Language :: Python :: 3.6"
,
"Programming Language :: Python :: 3.7"
,
"License :: OSI Approved :: BSD License"
,
"Operating System :: OS Independent"
,
"Topic :: Software Development :: Libraries"
,
...
...
@@ -25,5 +26,6 @@ setup(
"Framework :: Django :: 1.11"
,
"Framework :: Django :: 2.0"
,
"Framework :: Django :: 2.1"
,
"Framework :: Django :: 2.2"
,
],
)
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