Skip to content

Commit 1ab054d

Browse files
committed
Merge remote-tracking branch 'origin/master' into fix/3.7-tests
2 parents c252d47 + 45e33db commit 1ab054d

3 files changed

Lines changed: 9 additions & 5 deletions

File tree

.travis.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ python:
55
- 3.4
66
- 3.5
77
- 3.6
8-
- 3.7
98
env:
9+
- DJANGO="django>=2.1.0,<2.2.0"
1010
- DJANGO="django>=2.0.0,<2.1.0"
1111
- DJANGO="django>=1.11.0,<1.12.0"
1212
- DJANGO="django>=1.10.2,<1.11.0"
@@ -20,6 +20,10 @@ matrix:
2020
exclude:
2121
- python: 2.7
2222
env: DJANGO="django>=2.0.0,<2.1.0"
23+
- python: 2.7
24+
env: DJANGO="django>=2.1.0,<2.2.0"
25+
- python: 3.4
26+
env: DJANGO="django>=2.1.0,<2.2.0"
2327
- python: 3.7
2428
env: DJANGO="django>=1.11.0,<1.12.0"
2529
- python: 3.7

README.md

Lines changed: 2 additions & 2 deletions
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.0 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.1 using Python 2.7 and 3.4, 3.5 and 3.6.
55

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

@@ -187,7 +187,7 @@ class Follow(models.Model, Activity):
187187

188188

189189
#### Follow a feed
190-
The create the newsfeeds you need to notify the system about follow relationships. The manager comes with APIs to let a user's news feeds follow another user's feed. This code lets the current user's timeline and timeline_aggregated feeds follow the target_user's personal feed.
190+
To create the newsfeeds you need to notify the system about follow relationships. The manager comes with APIs to let a user's news feeds follow another user's feed. This code lets the current user's timeline and timeline_aggregated feeds follow the target_user's personal feed.
191191

192192
```python
193193
feed_manager.follow_user(request.user.id, target_user)

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
README = readme.read()
88

99
if sys.version_info < (3, 0, 0):
10-
django = 'django>=1.5,<2.0'
10+
django = 'django>=1.8.10,<2.0'
1111
else:
12-
django = 'django>=1.5,<2.1.0'
12+
django = 'django>=1.8.10,<2.2'
1313

1414
requirements = [
1515
django,

0 commit comments

Comments
 (0)