Unverified Commit 9c0e9ee8 authored by Wei Ji's avatar Wei Ji Committed by GitHub
Browse files

Move packaging and ninja from install_requires to setup_requires (#937)

Set `packaging` and `ninja` as build time dependencies rather than runtime dependencies.
parent 9a11f440
...@@ -344,10 +344,10 @@ setup( ...@@ -344,10 +344,10 @@ setup(
install_requires=[ install_requires=[
"torch", "torch",
"einops", "einops",
"packaging",
"ninja",
], ],
setup_requires=[ setup_requires=[
"psutil" "packaging",
"psutil",
"ninja",
], ],
) )
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment