Skip to content

Commit d9a0fab

Browse files
committed
fix optional dependencies for poetry
1 parent 0e35e28 commit d9a0fab

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

pyproject.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,13 +84,15 @@ multiprocess = "^0.70.18"
8484
uvloop = { version = "0.22.1", markers = "sys_platform != 'win32' and (sys_platform != 'cygwin' and platform_python_implementation != 'PyPy')" }
8585
jinja2 = { version = "^3.1.6", optional = true }
8686
pydantic = { version = "^2.0.0", optional = true }
87+
robyn-config = { version = "^1.0.0", optional = true }
8788
rustimport = "^1.3.4"
8889
orjson = "^3.11.5"
8990

9091
[tool.poetry.extras]
9192
templating = ["jinja2"]
9293
pydantic = ["pydantic"]
93-
all = ["jinja2", "pydantic"]
94+
robyn-config = ["robyn-config"]
95+
all = ["jinja2", "pydantic", "robyn-config"]
9496

9597
[tool.poetry.group.dev]
9698
optional = true

0 commit comments

Comments
 (0)