Skip to content

Commit 9c0e9ee

Browse files
authored
Move packaging and ninja from install_requires to setup_requires (Dao-AILab#937)
Set `packaging` and `ninja` as build time dependencies rather than runtime dependencies.
1 parent 9a11f44 commit 9c0e9ee

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -344,10 +344,10 @@ def __init__(self, *args, **kwargs) -> None:
344344
install_requires=[
345345
"torch",
346346
"einops",
347-
"packaging",
348-
"ninja",
349347
],
350348
setup_requires=[
351-
"psutil"
349+
"packaging",
350+
"psutil",
351+
"ninja",
352352
],
353353
)

0 commit comments

Comments
 (0)