diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 0000000..578003d --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1 @@ +* @JimmyPettersson85 @xernobyl @itsmeadi diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a470793..94af1c9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,8 +11,9 @@ jobs: strategy: fail-fast: false matrix: - python: [3.6, 3.7, 3.8, 3.9, "3.10"] + 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" @@ -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 diff --git a/README.md b/README.md index bbe33bb..bd4e130 100644 --- a/README.md +++ b/README.md @@ -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.
-
+
Below we show an example of how you can read the notification feed.
```python
diff --git a/assets/feeds-notifications.webp b/assets/feeds-notifications.webp
new file mode 100644
index 0000000..119a6eb
Binary files /dev/null and b/assets/feeds-notifications.webp differ
diff --git a/setup.py b/setup.py
index 0cb7efc..eacdea7 100644
--- a/setup.py
+++ b/setup.py
@@ -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",
],
diff --git a/stream_django/tests/test_app/migrations/0001_initial.py b/stream_django/tests/test_app/migrations/0001_initial.py
index 63a3191..3370f1f 100644
--- a/stream_django/tests/test_app/migrations/0001_initial.py
+++ b/stream_django/tests/test_app/migrations/0001_initial.py
@@ -8,7 +8,6 @@
class Migration(migrations.Migration):
-
dependencies = [
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
]
diff --git a/stream_django/tests/test_app/migrations/0002_auto_20141119_0647.py b/stream_django/tests/test_app/migrations/0002_auto_20141119_0647.py
index c7294fe..0f0bd7a 100644
--- a/stream_django/tests/test_app/migrations/0002_auto_20141119_0647.py
+++ b/stream_django/tests/test_app/migrations/0002_auto_20141119_0647.py
@@ -16,7 +16,6 @@ def create_a_pin(apps, schema_editor):
class Migration(migrations.Migration):
-
dependencies = [
("test_app", "0001_initial"),
]