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
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ coverage.xml
cover/

# Translations
*.mo
*.pot

# Django stuff:
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.7** (2025-10-15)
* Maintenance updates via ambient-package-update

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

Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

- Create a Python virtualenv and activate it
- Install "uv" with `pip install -U uv`
- Sync the requirements with `uv sync --frozen --group dev`
- Sync the requirements with `uv sync --frozen --extra dev`

## Add functionality

Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ dependencies = [
'Django>=4.2',
]

[dependency-groups]
[project.optional-dependencies]
dev = [
'typer~=0.19',
'pytest-cov~=7.0',
Expand Down Expand Up @@ -202,7 +202,7 @@ env_list = ["django42", "django51", "django52", ]
package = "wheel"
wheel_build_env = ".pkg"
runner = "uv-venv-lock-runner"
dependency_groups = ["dev", ]
extras = ["dev", ]
commands = [
["pytest", "--cov=queuebie", "--cov-report=term", "--cov-report=xml", "--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 @@
"""A simple and synchronous message queue for commands and events for Django"""

__version__ = "0.3.6"
__version__ = "0.3.7"

from queuebie.registry import MessageRegistry

Expand Down
2 changes: 1 addition & 1 deletion scripts/unix/install_requirements.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/bash
pip install -U uv
uv sync --frozen --group dev
uv sync --frozen --extra dev
2 changes: 1 addition & 1 deletion scripts/windows/install_requirements.ps1
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
pip install -U uv
uv sync --frozen --group dev
uv sync --frozen --extra dev
31 changes: 15 additions & 16 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.