Skip to content

Commit 87a9c07

Browse files
authored
ci: Drop support for PyTorch 1.13-2.5 (#10500)
1 parent b2c3941 commit 87a9c07

File tree

6 files changed

+9
-39
lines changed

6 files changed

+9
-39
lines changed

.github/CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ If your PR isn't merged anytime soon (*e.g.,* due to its large size, complexity
1616

1717
To develop PyG on your machine, here are some tips:
1818

19-
1. Ensure that you are running on one of the two latest PyTorch releases (*e.g.*, `2.2.0`):
19+
1. Ensure that you are running on one of the two latest PyTorch releases (*e.g.*, `2.8.0`):
2020

2121
```python
2222
import torch
@@ -30,7 +30,7 @@ To develop PyG on your machine, here are some tips:
3030
pip install pyg-lib torch-scatter torch-sparse torch-cluster torch-spline-conv -f https://data.pyg.org/whl/torch-${TORCH}+${CUDA}.html
3131
```
3232

33-
where `${TORCH}` should be replaced by your PyTorch version (*e.g.*, `2.2.0`), and `${CUDA}` should be replaced by your CUDA version (*e.g.*, `cpu`, `cu118` or `cu121`).
33+
where `${TORCH}` should be replaced by your PyTorch version (*e.g.*, `2.8.0`), and `${CUDA}` should be replaced by your CUDA version (*e.g.*, `cpu`, `cu126`, `cu128`, or `cu129`).
3434

3535
1. Uninstall all existing PyG installations.
3636
It is advised to run this command repeatedly to confirm that installations across all locations are properly removed.

.github/workflows/testing_full.yml

Lines changed: 1 addition & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -17,22 +17,8 @@ jobs:
1717
matrix:
1818
os: [ubuntu-latest, windows-latest, macos-14]
1919
python-version: ['3.10']
20-
torch-version: [1.13.0, 2.0.0, 2.1.0, 2.2.0, 2.3.0, 2.4.0, 2.5.0, 2.6.0, 2.7.0, 2.8.0, nightly]
20+
torch-version: [2.6.0, 2.7.0, 2.8.0, nightly]
2121
include:
22-
- torch-version: 1.13.0
23-
torchvision-version: 0.14.0
24-
- torch-version: 2.0.0
25-
torchvision-version: 0.15.0
26-
- torch-version: 2.1.0
27-
torchvision-version: 0.16.0
28-
- torch-version: 2.2.0
29-
torchvision-version: 0.17.0
30-
- torch-version: 2.3.0
31-
torchvision-version: 0.18.0
32-
- torch-version: 2.4.0
33-
torchvision-version: 0.19.0
34-
- torch-version: 2.5.0
35-
torchvision-version: 0.20.0
3622
- torch-version: 2.6.0
3723
torchvision-version: 0.21.0
3824
- torch-version: 2.7.0
@@ -41,15 +27,6 @@ jobs:
4127
torchvision-version: 0.23.0
4228
- torch-version: nightly
4329
torchvision-version: nightly
44-
exclude:
45-
- os: macos-14
46-
torch-version: 1.13.0
47-
- os: macos-14
48-
torch-version: 2.0.0
49-
- os: macos-14
50-
torch-version: 2.1.0
51-
- os: macos-14
52-
torch-version: 2.2.0
5330

5431
steps:
5532
- name: Checkout repository

.github/workflows/testing_full_gpu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Setup packages
1919
uses: ./.github/actions/setup
2020
with:
21-
cuda-version: 'cu118'
21+
cuda-version: 'cu128'
2222

2323
- name: Print GPU information
2424
run: |

.github/workflows/testing_latest.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,7 @@ jobs:
2020
fail-fast: false
2121
matrix:
2222
os: [ubuntu-latest, windows-latest, macos-14]
23-
include:
24-
- os: ubuntu-latest
25-
python-version: '3.10'
26-
- os: windows-latest
27-
python-version: '3.10'
28-
- os: macos-14
29-
python-version: '3.10'
23+
python-version: ['3.10']
3024

3125
steps:
3226
- name: Checkout repository

.github/workflows/testing_prev.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,10 @@ jobs:
1919
strategy:
2020
fail-fast: false
2121
matrix:
22-
torch-version: [1.13.0, 2.1.0, 2.7.0]
22+
torch-version: [2.6.0, 2.7.0]
2323
include:
24-
- torch-version: 1.13.0
25-
torchvision-version: 0.14.0
26-
- torch-version: 2.1.0
27-
torchvision-version: 0.16.0
24+
- torch-version: 2.6.0
25+
torchvision-version: 0.21.0
2826
- torch-version: 2.7.0
2927
torchvision-version: 0.22.0
3028

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
102102
### Removed
103103

104104
- Dropped support for Python 3.9 ([#10461](https://github.com/pyg-team/pytorch_geometric/pull/10461))
105+
- Dropped support for PyTorch 1.13 - 2.5 ([#00000](https://github.com/pyg-team/pytorch_geometric/pull/00000))
105106
- Dropped support for PyTorch 1.12 ([#10248](https://github.com/pyg-team/pytorch_geometric/pull/10248))
106107
- Dropped support for PyTorch 1.11 ([#10247](https://github.com/pyg-team/pytorch_geometric/pull/10247))
107108

0 commit comments

Comments
 (0)