Skip to content

Commit 29a164a

Browse files
committed
build: robyn-db-migrate
1 parent 15db512 commit 29a164a

File tree

4 files changed

+188
-128
lines changed

4 files changed

+188
-128
lines changed

pyproject.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@ dependencies = [
3131
# conditional
3232
"uvloop~=0.21.0; sys_platform != 'win32' and platform_python_implementation == 'CPython' and platform_machine != 'armv7l'",
3333
"watchdog == 4.0.1",
34-
"alembic == 1.16.3",
3534
]
3635

3736
[project.optional-dependencies]
3837
"templating" = ["jinja2 == 3.0.1"]
38+
"database" = ["alembic >= 1.16.3"]
3939

4040
[project.urls]
4141
Documentation = "https://robyn.tech/"
@@ -80,11 +80,13 @@ watchdog = "4.0.1"
8080
multiprocess = "0.70.14"
8181
uvloop = { version = "0.21.0", markers = "sys_platform != 'win32' and (sys_platform != 'cygwin' and platform_python_implementation != 'PyPy')" }
8282
jinja2 = { version = "3.0.1", optional = true }
83+
alembic = { version = "^1.16.3", optional = true }
8384
rustimport = "^1.3.4"
8485
orjson = "^3.9.15"
8586

8687
[tool.poetry.extras]
8788
templating = ["jinja2"]
89+
database = ["alembic"]
8890

8991
[tool.poetry.group.dev]
9092
optional = true

0 commit comments

Comments
 (0)