Skip to content

Commit 484cdb3

Browse files
committed
Use >= for sidemantic version in dashboard to auto-update
1 parent b5165c7 commit 484cdb3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docs/dashboard.qmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ pyproject: |
1212
requires-python = ">=3.11"
1313
dependencies = [
1414
"marimo>=0.16.5",
15-
"sidemantic==0.2.12",
15+
"sidemantic>=0.2.29",
1616
"duckdb>=1.0",
1717
"sqlglot>=25",
1818
"pydantic>=2",
@@ -34,7 +34,7 @@ import micropip
3434
try:
3535
import sidemantic # type: ignore
3636
except ModuleNotFoundError:
37-
await micropip.install(["sidemantic==0.2.12"], deps=False)
37+
await micropip.install(["sidemantic"], deps=False)
3838
import sidemantic # type: ignore
3939
```
4040

0 commit comments

Comments
 (0)