Skip to content

Commit 47eb32b

Browse files
committed
Make server dependencies non-optional
This will fix some confusion, and stop client-only installs from being broken now that `Thing` can be imported at top level. Closes #120
1 parent c2e09b8 commit 47eb32b

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

pyproject.toml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ dependencies = [
1919
"typing_extensions",
2020
"anyio ~=4.0",
2121
"httpx",
22+
"fastapi[all]>=0.115.0",
23+
"zeroconf >=0.28.0",
2224
]
2325

2426
[project.optional-dependencies]
@@ -29,10 +31,6 @@ dev = [
2931
"ruff>=0.1.3",
3032
"types-jsonschema",
3133
]
32-
server = [
33-
"fastapi[all]>=0.115.0",
34-
"zeroconf >=0.28.0",
35-
]
3634

3735
[project.urls]
3836
"Homepage" = "https://github.com/rwb27/labthings-fastapi"

0 commit comments

Comments
 (0)