Skip to content

Commit 19be00b

Browse files
committed
feat: migrate from Poetry to UV (#1176)
1 parent 35fbeb7 commit 19be00b

5 files changed

Lines changed: 1124 additions & 1396 deletions

File tree

noxfile.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,17 @@
55

66
@nox.session(python=["3.10", "3.11", "3.12", "3.13", "3.14"])
77
def tests(session):
8-
session.run("pip", "install", "poetry==1.3.0")
8+
session.run("pip", "install", "uv")
99
session.run("pip", "install", "maturin")
1010
session.run(
11-
"poetry",
11+
"uv",
1212
"export",
13-
"--with",
13+
"--group",
1414
"test",
15-
"--with",
15+
"--group",
1616
"dev",
17-
"--without-hashes",
18-
"--output",
17+
"--no-hashes",
18+
"--output-file",
1919
"requirements.txt",
2020
)
2121
session.run("pip", "install", "-r", "requirements.txt")

0 commit comments

Comments
 (0)