Skip to content

Commit f2d2bdd

Browse files
committed
add django 5.1 to CI and classifiers fix #19
1 parent 85cd208 commit f2d2bdd

File tree

4 files changed

+13
-2
lines changed

4 files changed

+13
-2
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,16 @@ jobs:
2323
- '3.2' # LTS April 2024
2424
- '4.2' # LTS April 2026
2525
- '5.0' # April 2025
26+
- '5.1b1' # December 2025
2627
exclude:
2728
- python-version: '3.8'
2829
django-version: '5.0'
2930
- python-version: '3.9'
3031
django-version: '5.0'
32+
- python-version: '3.8'
33+
django-version: '5.1b1'
34+
- python-version: '3.9'
35+
django-version: '5.1b1'
3136
- python-version: '3.11'
3237
django-version: '3.2'
3338
- python-version: '3.12'

django_routines/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
from django.core.exceptions import ImproperlyConfigured
2323
from django.utils.functional import Promise
2424

25-
VERSION = (1, 1, 1)
25+
VERSION = (1, 1, 2)
2626

2727
__title__ = "Django Routines"
2828
__version__ = ".".join(str(i) for i in VERSION)

doc/source/changelog.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
Change Log
33
==========
44

5+
v1.1.2
6+
======
7+
8+
* `Support Django 5.1 <https://github.com/bckohan/django-routines/issues/19>`_
9+
510
v1.1.1
611
======
712

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "django-routines"
3-
version = "1.1.1"
3+
version = "1.1.2"
44
description = "Define named groups of management commands in Django settings files for batched execution."
55
authors = ["Brian Kohan <bckohan@gmail.com>"]
66
license = "MIT"
@@ -19,6 +19,7 @@ classifiers = [
1919
"Framework :: Django :: 4.1",
2020
"Framework :: Django :: 4.2",
2121
"Framework :: Django :: 5.0",
22+
"Framework :: Django :: 5.1",
2223
"Intended Audience :: Developers",
2324
"License :: OSI Approved :: MIT License",
2425
"Natural Language :: English",

0 commit comments

Comments
 (0)