Skip to content

Commit 81f751d

Browse files
authored
Add Python 3.11 and Django 4.1 support (#111)
2 parents c72254c + 95fdb04 commit 81f751d

File tree

4 files changed

+13
-4
lines changed

4 files changed

+13
-4
lines changed

.github/workflows/test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ jobs:
99
strategy:
1010
fail-fast: false
1111
matrix:
12-
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10']
13-
django-version: ['3.2', '4.0', 'main']
12+
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11']
13+
django-version: ['3.2', '4.0', '4.1', 'main']
1414

1515
steps:
1616
- uses: actions/checkout@v2

CHANGES

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
django-simple-menu changelog
22
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
33

4+
Version 2.0.4 - Released November 17th, 2022
5+
- Support Python 3.11 and Django 4.1 (#110, #111)
6+
47
Version 2.0.3 - Released November 17th, 2022
5-
- Fixed typo ina docstring (#109)
8+
- Fixed typo in a docstring (#109)
69

710
Version 2.0.2 - Released November 4th, 2022
811
- Fixed generation of documentation on ReadTheDocs

setup.cfg

+2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ classifiers =
1111
Framework :: Django
1212
Framework :: Django :: 3.2
1313
Framework :: Django :: 4.0
14+
Framework :: Django :: 4.1
1415
Intended Audience :: Developers
1516
License :: OSI Approved :: BSD License
1617
Natural Language :: English
@@ -25,6 +26,7 @@ classifiers =
2526
Programming Language :: Python :: 3.8
2627
Programming Language :: Python :: 3.9
2728
Programming Language :: Python :: 3.10
29+
Programming Language :: Python :: 3.11
2830

2931
[options]
3032
packages =

tox.ini

+5-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ skipsdist = true
33
usedevelop = true
44
envlist =
55
py{36,37,38,39,310}-dj32
6-
py{38,39,310}-dj{40,main}
6+
py{38,39,310}-dj40
7+
py{38,39,310,311}-dj{41,main}
78

89
[gh-actions]
910
python =
@@ -12,11 +13,13 @@ python =
1213
3.8: py38
1314
3.9: py39
1415
3.10: py310
16+
3.11: py311
1517

1618
[gh-actions:env]
1719
DJANGO =
1820
3.2: dj32
1921
4.0: dj40
22+
4.1: dj41
2023
main: djmain
2124

2225
[testenv]
@@ -25,6 +28,7 @@ deps =
2528
coverage
2629
dj32: Django>=3.2,<3.3
2730
dj40: Django>=4.0,<4.1
31+
dj41: Django>=4.1,<4.2
2832
djmain: https://github.com/django/django/tarball/main
2933
setenv =
3034
DJANGO_SETTINGS_MODULE=simple_menu.test_settings

0 commit comments

Comments
 (0)