Skip to content
This repository was archived by the owner on Sep 12, 2023. It is now read-only.

Commit 67e8c67

Browse files
committed
Fix: make click optional, add alembic
1 parent 71ff00c commit 67e8c67

File tree

2 files changed

+26
-5
lines changed

2 files changed

+26
-5
lines changed

poetry.lock

Lines changed: 23 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,8 @@ uvloop = "*"
6969
structlog = ">=22.2.0"
7070

7171
# Optionals
72-
click = "*"
72+
alembic = { version = "*", optional = true }
73+
click = { version = "*", optional = true }
7374
hiredis = { version = "*", optional = true }
7475
redis = { version = "*", optional = true }
7576
saq = { version = "^0.9.1", optional = true }
@@ -81,7 +82,7 @@ cache = ["redis", "hiredis"]
8182
cli = ["click"]
8283
worker = ["saq", "hiredis"]
8384
sentry = ["sentry-sdk"]
84-
sqlalchemy = ["sqlalchemy"]
85+
sqlalchemy = ["alembic", "sqlalchemy"]
8586
all = ["click", "hiredis", "redis", "saq", "sentry-sdk", "sqlalchemy"]
8687

8788
[tool.poetry.plugins."pytest11"]

0 commit comments

Comments
 (0)