Skip to content

Commit 61b303f

Browse files
authored
[PBE-163] SDK update, python 3.11, django 4.1.0 (#118)
* sdk update, python 3.11, django 4.1.0, remove unsupported python 3.6 * add codeowners * remove unsupported python 2.7 and 3.6
1 parent b0f1b32 commit 61b303f

File tree

7 files changed

+12
-9
lines changed

7 files changed

+12
-9
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @JimmyPettersson85 @xernobyl @itsmeadi

.github/workflows/ci.yml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,9 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
python: [3.6, 3.7, 3.8, 3.9, "3.10"]
14+
python: ["3.7", "3.8", "3.9", "3.10", "3.11"]
1515
django:
16+
- "django>=4.1.0, <4.2"
1617
- "django>=4.0.0, <4.1"
1718
- "django>=3.2.0, <3.3"
1819
- "django>=3.1.0, <3.2"
@@ -21,12 +22,16 @@ jobs:
2122
- "django>=2.1.0, <2.2.0"
2223
- "django>=2.0.0, <2.1.0"
2324
exclude:
24-
- python: 3.6
25-
django: "django>=4.0.0, <4.1"
26-
- python: 3.7
25+
- python: "3.7"
26+
django: "django>=4.1.0, <4.2"
27+
- python: "3.7"
2728
django: "django>=4.0.0, <4.1"
2829
- python: "3.10"
2930
django: "django>=2.0.0, <2.1.0"
31+
- python: "3.11"
32+
django: "django>=2.0.0, <2.1.0"
33+
- python: "3.11"
34+
django: "django>=2.1.0, <2.2.0"
3035
steps:
3136
- uses: actions/checkout@v3
3237

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ timeline_aggregated = feed_manager.get_news_feeds(user_id)['timeline_aggregated'
168168
The notification feed can be used to build notification functionality.
169169

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

173173
Below we show an example of how you can read the notification feed.
174174
```python

assets/feeds-notifications.webp

70.7 KB
Loading

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,13 +48,12 @@
4848
"License :: OSI Approved :: BSD License",
4949
"Operating System :: OS Independent",
5050
"Programming Language :: Python",
51-
"Programming Language :: Python :: 2.7",
5251
"Programming Language :: Python :: 3",
53-
"Programming Language :: Python :: 3.6",
5452
"Programming Language :: Python :: 3.7",
5553
"Programming Language :: Python :: 3.8",
5654
"Programming Language :: Python :: 3.9",
5755
"Programming Language :: Python :: 3.10",
56+
"Programming Language :: Python :: 3.11",
5857
"Topic :: Internet :: WWW/HTTP",
5958
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
6059
],

stream_django/tests/test_app/migrations/0001_initial.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88

99

1010
class Migration(migrations.Migration):
11-
1211
dependencies = [
1312
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
1413
]

stream_django/tests/test_app/migrations/0002_auto_20141119_0647.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ def create_a_pin(apps, schema_editor):
1616

1717

1818
class Migration(migrations.Migration):
19-
2019
dependencies = [
2120
("test_app", "0001_initial"),
2221
]

0 commit comments

Comments
 (0)