Skip to content

Commit 261d2b6

Browse files
committed
Relaxed package versions to untested versions;
1 parent b776c63 commit 261d2b6

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,8 @@ Best wishes,
156156
Michael
157157

158158
## Requirements
159+
I relaxed the package versions to untested versions now.
160+
Please see the list below for the tested package versions and let me know if some higher package version fails.
159161
- [Python3.6.9](https://www.python.org/) or higher
160162
- Python packages:
161163
- [Pytorch](https://pytorch.org/) (tested with version 1.3.1)

deeprc/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
Author -- Michael Widrich
44
55
"""
6-
__version__ = '0.0.4'
6+
__version__ = '0.0.5'

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ def get_version(rel_path):
2222
with open('README.md', encoding="utf-8") as fh:
2323
readme = fh.read()
2424

25-
requirements = {"install": ["torch==1.3.1", "numpy==1.19.2", "h5py==2.9.0", "dill==0.3.0", "pandas==0.24.2",
26-
"tqdm==4.32.1", "tensorboard==1.15.0", "scikit-learn==0.23.1",
27-
"requests==2.21.0"]}
25+
requirements = {"install": ["torch>=1.3.1", "numpy>=1.19.2", "h5py>=2.9.0", "dill>=0.3.0", "pandas>=0.24.2",
26+
"tqdm>=4.32.1", "tensorboard>=1.15.0", "scikit-learn>=0.23.1",
27+
"requests>=2.21.0"]}
2828
install_requires = requirements["install"]
2929

3030
setup(

0 commit comments

Comments
 (0)