Skip to content

Commit 6501c19

Browse files
authored
Merge pull request #89 from GetStream/v1.6
V1.6
2 parents 15c6183 + a749c49 commit 6501c19

File tree

3 files changed

+13
-4
lines changed

3 files changed

+13
-4
lines changed

.travis.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ python:
66
- 3.5
77
- 3.6
88
env:
9+
- DJANGO="django>=2.2.0,<3.0"
910
- DJANGO="django>=2.1.0,<2.2.0"
1011
- DJANGO="django>=2.0.0,<2.1.0"
1112
- DJANGO="django>=1.11.0,<1.12.0"
@@ -22,8 +23,16 @@ matrix:
2223
env: DJANGO="django>=2.0.0,<2.1.0"
2324
- python: 2.7
2425
env: DJANGO="django>=2.1.0,<2.2.0"
26+
- python: 2.7
27+
env: DJANGO="django>=2.2.0,<3.0"
2528
- python: 3.4
2629
env: DJANGO="django>=2.1.0,<2.2.0"
30+
- python: 3.4
31+
env: DJANGO="django>=2.2.0,<3.0"
32+
- python: 3.5
33+
env: DJANGO="django>=2.2.0,<3.0"
34+
- python: 3.6
35+
env: DJANGO="django>=2.2.0,<3.0"
2736
- python: 3.7
2837
env: DJANGO="django>=1.11.0,<1.12.0"
2938
- 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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
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,
16-
'stream-python>=2.8.1',
16+
'stream-python>=3.0.1',
1717
'pytz'
1818
]
1919

@@ -23,7 +23,7 @@
2323

2424
setup(
2525
name='stream-django',
26-
version='1.5.0',
26+
version='1.6.0',
2727
packages=['stream_django'],
2828
include_package_data=True,
2929
install_requires=requirements,

0 commit comments

Comments
 (0)