Skip to content

Commit 0ac7c94

Browse files
committed
support Django 2.2 + bump version 0.2.1
1 parent 4b1f447 commit 0ac7c94

File tree

4 files changed

+24
-24
lines changed

4 files changed

+24
-24
lines changed

.travis.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,12 @@ matrix:
3838
- python: 3.7
3939
env: DJANGO=2.1
4040

41-
# - python: 3.5
42-
# env: DJANGO=2.2
43-
# - python: 3.6
44-
# env: DJANGO=2.2
45-
# - python: 3.7
46-
# env: DJANGO=2.2
41+
- python: 3.5
42+
env: DJANGO=2.2
43+
- python: 3.6
44+
env: DJANGO=2.2
45+
- python: 3.7
46+
env: DJANGO=2.2
4747

4848
- python: 3.6
4949
env: DJANGO=master

README.rst

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -39,22 +39,22 @@ Here is a brief comparison between Django's session backends (db, cache, cached_
3939

4040

4141

42-
Requirements
43-
============
44-
45-
+----------------+----------------------+
46-
| Python version | Django versions |
47-
+================+======================+
48-
| 3.7 | 2.0, 2.1 |
49-
+----------------+----------------------+
50-
| 3.6 | 1.10, 1.11, 2.0, 2.1 |
51-
+----------------+----------------------+
52-
| 3.5 | 1.10, 1.11, 2.0, 2.1 |
53-
+----------------+----------------------+
54-
| 3.4 | 1.10, 1.11, 2.0 |
55-
+----------------+----------------------+
56-
| 2.7 | 1.10, 1.11 |
57-
+----------------+----------------------+
42+
Compatibility
43+
=============
44+
45+
+----------------+---------------------------+
46+
| Python version | Django versions |
47+
+================+===========================+
48+
| 3.7 | 2.0, 2.1, 2.2 |
49+
+----------------+---------------------------+
50+
| 3.6 | 1.10, 1.11, 2.0, 2.1, 2.2 |
51+
+----------------+---------------------------+
52+
| 3.5 | 1.10, 1.11, 2.0, 2.1, 2.2 |
53+
+----------------+---------------------------+
54+
| 3.4 | 1.10, 1.11, 2.0 |
55+
+----------------+---------------------------+
56+
| 2.7 | 1.10, 1.11 |
57+
+----------------+---------------------------+
5858

5959
Installation
6060
============

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
setup(
1818
name='django-qsessions',
19-
version='0.2.0',
19+
version='0.2.1',
2020
description='Extends Django\'s cached_db session backend',
2121
long_description=README,
2222
author='Mohammad Javad Naderi',

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ deps=
2828
dj111: Django>=1.11,<2.0
2929
dj20: Django>=2.0,<2.1
3030
dj21: Django>=2.1,<2.2
31-
dj22: Django>=2.2,<2.3
31+
dj22: Django>=2.2.1,<2.3
3232
djmaster: https://github.com/django/django/archive/master.tar.gz
3333
ignore_outcome =
3434
djmaster: True

0 commit comments

Comments
 (0)