Skip to content

Commit 2396071

Browse files
authored
Merge pull request #62 from microsoft/jsleep/torch_version
adding torch as a required depedency with capped version
2 parents 77fd844 + 6de6ed6 commit 2396071

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

VERSION_NOTES.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
# Version Notes:
2+
## 0.2.7
3+
* Adding torch<=1.9 as required dependency
4+
25
## 0.2.6
36
* Adding support for parsing multi-level args from commandline and params
47

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,15 @@
33
with open("README.md", "r") as fh:
44
long_description = fh.read()
55

6-
# please install torch separately
7-
required = ['tqdm','tensorboard', 'Pillow','azureml-core','pyyaml','pandas']
6+
required = ['torch<=1.9','tqdm','tensorboard', 'Pillow','azureml-core','pyyaml','pandas']
87
extras = {
98
'dev': ['pylint', 'pytest', 'pytest-cov'],
109
'plugins': ['transformers','pandas','matplotlib','sklearn','scipy','rouge-score']
1110
}
1211

1312
setup(
1413
name="pymarlin",
15-
version="0.2.6",
14+
version="0.2.7",
1615
author="ELR Team",
1716
author_email="[email protected]",
1817
description="Lightweight Deeplearning Library",

0 commit comments

Comments
 (0)