Skip to content

Commit e4d80ea

Browse files
authored
Merge pull request #43 from TkTech/24_1_no_api
v0.24.1
2 parents dfbba16 + 4423a22 commit e4d80ea

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
Changelog
22
=========
33

4+
0.24.1
5+
------
6+
7+
🐛 Fixes
8+
9+
- Fix the API plugin being imported by the CLI when the API plugin is not
10+
installed (#42)
11+
12+
413
0.24.0
514
------
615

chancy/cli/worker.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
from chancy import Chancy, Worker
66
from chancy.cli import run_async_command
77
from chancy.errors import MigrationsNeededError
8-
from chancy.plugins.api.auth import SimpleAuthBackend
98

109

1110
@click.group(name="worker")
@@ -78,6 +77,7 @@ async def web_command(
7877
Start the Chancy dashboard.
7978
"""
8079
from chancy.plugins.api import Api
80+
from chancy.plugins.api.auth import SimpleAuthBackend
8181

8282
chancy: Chancy = ctx.obj["app"]
8383

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "chancy"
3-
version = "0.24.0"
3+
version = "0.24.1"
44
description = "A simple and flexible job queue for Python"
55
readme = "README.md"
66
requires-python = ">=3.11"

0 commit comments

Comments
 (0)