Skip to content

Commit 74b7d71

Browse files
committed
Support django 2.2
1 parent fdaedf3 commit 74b7d71

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

.travis.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@ python:
55
- 3.4
66
- 3.5
77
- 3.6
8+
- 3.7
89
env:
10+
- DJANGO="django>=2.2.0,<3.0"
911
- DJANGO="django>=2.1.0,<2.2.0"
1012
- DJANGO="django>=2.0.0,<2.1.0"
1113
- DJANGO="django>=1.11.0,<1.12.0"
@@ -22,6 +24,8 @@ matrix:
2224
env: DJANGO="django>=2.0.0,<2.1.0"
2325
- python: 2.7
2426
env: DJANGO="django>=2.1.0,<2.2.0"
27+
- python: 2.7
28+
env: DJANGO="django>=2.2.0,<3.0"
2529
- python: 3.4
2630
env: DJANGO="django>=2.1.0,<2.2.0"
2731
- python: 3.7

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
## Stream Django
22
[![Build Status](https://travis-ci.org/GetStream/stream-django.svg?branch=master)](https://travis-ci.org/GetStream/stream-django) [![Coverage Status](https://coveralls.io/repos/github/GetStream/stream-django/badge.svg?branch=master)](https://coveralls.io/github/GetStream/stream-django?branch=master) [![PyPI version](https://badge.fury.io/py/stream-django.svg)](http://badge.fury.io/py/stream-django)
33

4-
[stream-django](https://github.com/GetStream/stream-django) is a Django client for [Stream](https://getstream.io/), it supports Django from 1.5 up to and including 2.1 using Python 2.7 and 3.4, 3.5 and 3.6.
4+
[stream-django](https://github.com/GetStream/stream-django) is a Django client for [Stream](https://getstream.io/), it supports Django from 1.5 up to and including 2.2 using Python 2.7 and 3.4, 3.5, 3.6 and 3.7.
55

66
You can sign up for a Stream account at https://getstream.io/get_started.
77

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
if sys.version_info < (3, 0, 0):
1010
django = 'django>=1.8.10,<2.0'
1111
else:
12-
django = 'django>=1.8.10,<2.2'
12+
django = 'django>=1.8.10,<3.0'
1313

1414
requirements = [
1515
django,

0 commit comments

Comments
 (0)