From 89ececb32ba0cfd810737cb90b2285a27332f5d4 Mon Sep 17 00:00:00 2001 From: Jirka Borovec Date: Sun, 1 Dec 2019 09:42:33 +0100 Subject: [PATCH] fix for pyTorch 1.1 (#552) * min pyTorch 1.1 * try fixed test-tube * try fixed test-tube * try fixed test-tube * cleaning * Update requirements.txt --- .circleci/config.yml | 2 +- requirements.txt | 6 +++--- tox.ini | 1 + 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 00221f29ee..f4789a3181 100755 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -10,8 +10,8 @@ references: run: name: Install Dependences command: | - # PyPI pip install "$TORCH_VERSION" --user + # this is temporal fix til test-tube is not merged and released pip install -r requirements.txt --user sudo pip install pytest pytest-cov pytest-flake8 pip install -r ./tests/requirements.txt --user diff --git a/requirements.txt b/requirements.txt index acdc11d904..6cafa38930 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,8 +1,8 @@ scikit-learn>=0.20.2 tqdm>=4.35.0 numpy>=1.16.4 -torch>=1.2 +torch>=1.1 torchvision>=0.4.0 pandas>=0.24 # lower version do not support py3.7 -test-tube>=0.6.9 -# future>=0.17.1 # required for buildins in setup.py \ No newline at end of file +test-tube>=0.7.5 +future>=0.17.1 # required for buildins in setup.py diff --git a/tox.ini b/tox.ini index a62cace583..953374bc6a 100644 --- a/tox.ini +++ b/tox.ini @@ -31,6 +31,7 @@ basepython = py37: python3.7 py38: python3.8 deps = + # this is derived requirements -r requirements-ci.txt -r ./tests/requirements.txt commands =