Skip to content

Commit 033ddc0

Browse files
authored
update min req (#1934)
1 parent 6456247 commit 033ddc0

File tree

4 files changed

+2
-34
lines changed

4 files changed

+2
-34
lines changed

.circleci/config.yml

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -125,20 +125,6 @@ jobs:
125125
- store_artifacts:
126126
path: test-reports
127127

128-
PyTorch-v1_1:
129-
docker:
130-
- image: circleci/python:3.6
131-
environment:
132-
- TORCH_VERSION: "torch>=1.1, <1.2"
133-
steps: *steps
134-
135-
PyTorch-v1_2:
136-
docker:
137-
- image: circleci/python:3.6
138-
environment:
139-
- TORCH_VERSION: "torch>=1.2, <1.3"
140-
steps: *steps
141-
142128
PyTorch-v1_3:
143129
docker:
144130
- image: circleci/python:3.6
@@ -189,8 +175,6 @@ workflows:
189175
jobs:
190176
- Formatting
191177
- Build-Docs
192-
#- PyTorch-v1_1
193-
#- PyTorch-v1_2
194178
- PyTorch-v1_3
195179
- PyTorch-v1_4
196180
- PyTorch-v1_5

.github/workflows/docker-builds.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
matrix:
1616
python_version: [3.6, 3.7, 3.8]
17-
pytorch_version: [1.1, 1.2, 1.3, 1.4, 1.5]
17+
pytorch_version: [1.3, 1.4, 1.5]
1818
steps:
1919
- uses: actions/checkout@v2
2020

README.md

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -384,22 +384,6 @@ conda activate my_env
384384
pip install pytorch-lightning
385385
```
386386

387-
**Which PyTorch versions do you support?**
388-
- **PyTorch 1.1.0**
389-
```bash
390-
# install pytorch 1.1.0 using the official instructions
391-
392-
# install test-tube 0.6.7.6 which supports 1.1.0
393-
pip install test-tube==0.6.7.6
394-
395-
# install latest Lightning version without upgrading deps
396-
pip install -U --no-deps pytorch-lightning
397-
```
398-
- **PyTorch 1.2.0+**
399-
```python
400-
pip install pytorch-lightning
401-
```
402-
403387
## Custom installation
404388

405389
### Bleeding edge

environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ dependencies:
1010
- pip==20.0.2
1111
- tqdm>=4.35.0
1212
- numpy>=1.16.4
13-
- pytorch>=1.1
13+
- pytorch>=1.3
1414
- tensorboard>=1.14
1515
- future>=0.17.1
1616
- pyyaml>=3.13

0 commit comments

Comments
 (0)