Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,15 @@ jobs:
strategy:
matrix:
python-version: ['3.10', '3.11', '3.12', '3.13', ]
django-version: ['42', '51', '52', ]
django-version: ['42', '52', '60', ]

exclude:
- python-version: '3.11'
django-version: 60
- python-version: '3.10'
django-version: 60
- python-version: '3.9'
django-version: 52
- python-version: '3.9'
django-version: 51
- python-version: "3.13"
django-version: 42

Expand Down
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.14.0
rev: v0.14.8
hooks:
# Run the Ruff formatter.
- id: ruff-format
Expand All @@ -20,19 +20,19 @@ repos:
files: '(?:README\.md|\.ambient-package-update\/templates\/snippets\/.*\.tpl|docs\/.*\.(?:md|rst))'

- repo: https://github.com/asottile/pyupgrade
rev: v3.20.0
rev: v3.21.2
hooks:
- id: pyupgrade
args: [ --py310-plus ]

- repo: https://github.com/adamchainz/django-upgrade
rev: 1.29.0
rev: 1.29.1
hooks:
- id: django-upgrade
args: [--target-version, "4.2"]

- repo: https://github.com/adamchainz/djade-pre-commit
rev: 1.6.0
rev: 1.7.0
hooks:
- id: djade
args: [--target-version, "4.2"]
Expand Down
3 changes: 3 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

**0.3.8** (2025-12-11)
* Maintenance updates via ambient-package-update

**0.3.7** (2025-10-15)
* Maintenance updates via ambient-package-update

Expand Down
10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ classifiers = [
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.1",
"Framework :: Django :: 5.2",
"Framework :: Django :: 6.0",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
Expand Down Expand Up @@ -195,7 +195,7 @@ line-ending = "auto"

[tool.tox]
requires = ["tox>=4", "tox-uv>=1.0.0"]
env_list = ["django42", "django51", "django52", ]
env_list = ["django42", "django52", "django60", ]

[tool.tox.env_run_base]
# Django deprecation overview: https://www.djangoproject.com/download/
Expand All @@ -210,12 +210,12 @@ commands = [
[tool.tox.env.django42]
deps = ["Django==4.2.*"]

[tool.tox.env.django51]
deps = ["Django==5.1.*"]

[tool.tox.env.django52]
deps = ["Django==5.2.*"]

[tool.tox.env.django60]
deps = ["Django==6.0.*"]

[tool.tox.gh_actions.python]
"3.10" = "py310"
"3.11" = "py311"
Expand Down
2 changes: 1 addition & 1 deletion queuebie/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""A simple and synchronous message queue for commands and events for Django"""

__version__ = "0.3.7"
__version__ = "0.3.8"

from queuebie.registry import MessageRegistry

Expand Down