We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a2a590 commit a24ad15Copy full SHA for a24ad15
setup.py
@@ -107,14 +107,6 @@ def make_extension():
107
)
108
109
110
-def get_requirements():
111
- pytorch_dep = os.getenv("TORCH_PACKAGE_NAME", "torch")
112
- if os.getenv("PYTORCH_VERSION"):
113
- pytorch_dep += "==" + os.getenv("PYTORCH_VERSION")
114
-
115
- return [pytorch_dep]
116
117
118
if __name__ == "__main__":
119
120
with open("README.md") as f:
@@ -135,7 +127,7 @@ def get_requirements():
135
127
packages=find_packages(exclude=("test",)),
136
128
package_data={PACKAGE_NAME: ["*.dll", "*.dylib", "*.so"]},
137
129
zip_safe=False,
138
- install_requires=get_requirements(),
130
+ install_requires=[],
139
131
python_requires=">=3.9",
140
132
ext_modules=[make_extension()],
141
133
cmdclass={
0 commit comments