Skip to content

Commit 184fe60

Browse files
committed
build: add uv as nox dependency
1 parent 8ff642b commit 184fe60

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

noxfile.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# /// script
2-
# dependencies = ["nox", "github_action_utils"]
2+
# dependencies = ["nox", "github_action_utils", "uv"]
33
# ///
44

55
from contextlib import contextmanager
@@ -74,3 +74,7 @@ def poetry(session: nox.Session) -> None:
7474
def mypy(session: nox.Session) -> None:
7575
poetry(session)
7676
session.run("mypy", "duckdb_engine/")
77+
78+
79+
if __name__ == "__main__":
80+
nox.main()

0 commit comments

Comments
 (0)