Skip to content

Commit 45c2b04

Browse files
author
Peter Romov
authored
Remove strict dependency on a specific pytorch versioon
1 parent cd8f2f6 commit 45c2b04

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

setup.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,12 +51,9 @@ def write_version_file():
5151
with open("README.md", "r") as fh:
5252
long_description = fh.read()
5353

54-
pytorch_dep = "torch"
55-
if os.getenv("PYTORCH_VERSION"):
56-
pytorch_dep += "==" + os.getenv("PYTORCH_VERSION")
5754

5855
requirements = [
59-
pytorch_dep,
56+
"torch",
6057
]
6158

6259

0 commit comments

Comments
 (0)