From 033ddc0c29df19289ada684e483ae55b5eec6038 Mon Sep 17 00:00:00 2001 From: Jirka Borovec Date: Mon, 25 May 2020 13:43:17 +0200 Subject: [PATCH] update min req (#1934) --- .circleci/config.yml | 16 ---------------- .github/workflows/docker-builds.yml | 2 +- README.md | 16 ---------------- environment.yml | 2 +- 4 files changed, 2 insertions(+), 34 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 8ad5c95dc2..2237e39423 100755 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -125,20 +125,6 @@ jobs: - store_artifacts: path: test-reports - PyTorch-v1_1: - docker: - - image: circleci/python:3.6 - environment: - - TORCH_VERSION: "torch>=1.1, <1.2" - steps: *steps - - PyTorch-v1_2: - docker: - - image: circleci/python:3.6 - environment: - - TORCH_VERSION: "torch>=1.2, <1.3" - steps: *steps - PyTorch-v1_3: docker: - image: circleci/python:3.6 @@ -189,8 +175,6 @@ workflows: jobs: - Formatting - Build-Docs - #- PyTorch-v1_1 - #- PyTorch-v1_2 - PyTorch-v1_3 - PyTorch-v1_4 - PyTorch-v1_5 diff --git a/.github/workflows/docker-builds.yml b/.github/workflows/docker-builds.yml index dcc65257b3..c5b65d7152 100644 --- a/.github/workflows/docker-builds.yml +++ b/.github/workflows/docker-builds.yml @@ -14,7 +14,7 @@ jobs: strategy: matrix: python_version: [3.6, 3.7, 3.8] - pytorch_version: [1.1, 1.2, 1.3, 1.4, 1.5] + pytorch_version: [1.3, 1.4, 1.5] steps: - uses: actions/checkout@v2 diff --git a/README.md b/README.md index 6415803d4b..387bd79f5d 100644 --- a/README.md +++ b/README.md @@ -384,22 +384,6 @@ conda activate my_env pip install pytorch-lightning ``` -**Which PyTorch versions do you support?** -- **PyTorch 1.1.0** - ```bash - # install pytorch 1.1.0 using the official instructions - - # install test-tube 0.6.7.6 which supports 1.1.0 - pip install test-tube==0.6.7.6 - - # install latest Lightning version without upgrading deps - pip install -U --no-deps pytorch-lightning - ``` -- **PyTorch 1.2.0+** - ```python - pip install pytorch-lightning - ``` - ## Custom installation ### Bleeding edge diff --git a/environment.yml b/environment.yml index 4b06b5b0d3..f2718a99c3 100644 --- a/environment.yml +++ b/environment.yml @@ -10,7 +10,7 @@ dependencies: - pip==20.0.2 - tqdm>=4.35.0 - numpy>=1.16.4 - - pytorch>=1.1 + - pytorch>=1.3 - tensorboard>=1.14 - future>=0.17.1 - pyyaml>=3.13