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
6 changes: 2 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,17 +30,15 @@ jobs:
strategy:
matrix:
python-version: ['3.10', '3.11', '3.12', '3.13', ]
django-version: ['42', '50', '51', ]
django-version: ['42', '51', '52', ]

exclude:
- python-version: '3.9'
django-version: 50
django-version: 52
- python-version: '3.9'
django-version: 51
- python-version: "3.13"
django-version: 42
- python-version: "3.13"
django-version: 50

steps:
- uses: actions/checkout@v4
Expand Down
6 changes: 3 additions & 3 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.9.3
rev: v0.11.2
hooks:
# Run the Ruff formatter.
- id: ruff-format
Expand All @@ -16,7 +16,7 @@ repos:
hooks:
- id: blacken-docs
additional_dependencies:
- black==24.10.0
- black==25.1.0
files: '(?:README\.md|\.ambient-package-update\/templates\/snippets\/.*\.tpl|docs\/.*\.(?:md|rst))'

- repo: https://github.com/asottile/pyupgrade
Expand All @@ -26,7 +26,7 @@ repos:
args: [ --py310-plus ]

- repo: https://github.com/adamchainz/django-upgrade
rev: 1.22.2
rev: 1.24.0
hooks:
- id: django-upgrade
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.2** (2025-04-03)
* Maintenance updates via ambient-package-update

* *0.3.1* (2025-03-19)
* Added a paranoid-ish test to check that the import logic isn't breaking any testing functionality

Expand Down
4 changes: 2 additions & 2 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.0",
"Framework :: Django :: 5.1",
"Framework :: Django :: 5.2",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
Expand Down Expand Up @@ -202,8 +202,8 @@ legacy_tox_ini = """
# Django deprecation overview: https://www.djangoproject.com/download/
deps =
django42: Django==4.2.*
django50: Django==5.0.*
django51: Django==5.1.*
django52: Django==5.2.*
extras = dev,
commands =
coverage run -m pytest --ds settings tests
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 @@
"""Simple message queue for commands and events (CQRS)"""

__version__ = "0.3.1"
__version__ = "0.3.2"

from queuebie.registry import MessageRegistry

Expand Down