We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7aed7f3 commit 116851bCopy full SHA for 116851b
3 files changed
.github/workflows/main.yml
@@ -45,7 +45,7 @@ jobs:
45
46
strategy:
47
matrix:
48
- python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
+ python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
49
50
steps:
51
- uses: actions/checkout@v2
CHANGELOG.rst
@@ -3,6 +3,17 @@
3
Changelog
4
#########
5
6
+next
7
+====
8
+
9
+Maintenance
10
+-----------
11
12
+* Support Python 3.13.
13
+* Drop support for Python 3.8.
14
+* Support Django 5.2.
15
+* Drop support for Django 5.0.
16
17
0.10 (July 15, 2024)
18
====================
19
tox.ini
@@ -5,11 +5,11 @@
[tox]
envlist =
- py{38,39,310,311,312}-django42,
- # Django 5.0 drops support for Python 3.8 and 3.9.
- py{310,311,312}-django{50,51,main},
- # Django 4.1.3 adds support for Python 3.11.
- py311-django{41,42,main}
+ # See https://www.djangoproject.com/download/#supported-versions
+ # See https://docs.djangoproject.com/en/dev/faq/install/#what-python-version-can-i-use-with-django
+ py{39,310,311,312}-django42,
+ py{310,311,312,313}-django{51,52},
+ py{312,313}-djangomain
isolated_build = True
skip_missing_interpreters = True
@@ -18,7 +18,7 @@ commands =
python manage.py test
deps =
20
Jinja2
21
- django42: Django>=4.2,<4.3
22
- django50: Django>=5.0,<5.1
23
- django51: Django>=5.1b1,<5.2
+ django42: Django>=4.2.8,<4.3
+ django51: Django>=5.1.3,<5.2
+ django52: Django>=5.2,<5.3
24
djangomain: https://codeload.github.com/django/django/zip/main
0 commit comments