Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @JimmyPettersson85 @xernobyl @itsmeadi
13 changes: 9 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,9 @@ jobs:
strategy:
fail-fast: false
matrix:
python: [3.6, 3.7, 3.8, 3.9, "3.10"]
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

removed python 3.6, not supported
actions/setup-python#544 (comment)

python: ["3.7", "3.8", "3.9", "3.10", "3.11"]
django:
- "django>=4.1.0, <4.2"
- "django>=4.0.0, <4.1"
- "django>=3.2.0, <3.3"
- "django>=3.1.0, <3.2"
Expand All @@ -21,12 +22,16 @@ jobs:
- "django>=2.1.0, <2.2.0"
- "django>=2.0.0, <2.1.0"
exclude:
- python: 3.6
django: "django>=4.0.0, <4.1"
- python: 3.7
- python: "3.7"
django: "django>=4.1.0, <4.2"
- python: "3.7"
django: "django>=4.0.0, <4.1"
- python: "3.10"
django: "django>=2.0.0, <2.1.0"
- python: "3.11"
django: "django>=2.0.0, <2.1.0"
- python: "3.11"
django: "django>=2.1.0, <2.2.0"
steps:
- uses: actions/checkout@v3

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ timeline_aggregated = feed_manager.get_news_feeds(user_id)['timeline_aggregated'
The notification feed can be used to build notification functionality.

<p align="center">
<img src="http://feedly.readthedocs.org/en/latest/_images/fb_notification_system.png" alt="Notification feed" title="Notification feed"/>
<img src="./assets/feeds-notifications.webp" alt="Notification feed" title="Notification feed"/>

Below we show an example of how you can read the notification feed.
```python
Expand Down
Binary file added assets/feeds-notifications.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,12 @@
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
],
Expand Down
1 change: 0 additions & 1 deletion stream_django/tests/test_app/migrations/0001_initial.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@


class Migration(migrations.Migration):

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lint fixes

dependencies = [
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ def create_a_pin(apps, schema_editor):


class Migration(migrations.Migration):

dependencies = [
("test_app", "0001_initial"),
]
Expand Down