Skip to content

Commit e63cecc

Browse files
authored
Merge branch 'pyg-team:master' into graphland
2 parents 4c458db + b0b6d4e commit e63cecc

30 files changed

+136
-127
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/auto-merge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
if: ${{ github.event.pull_request.user.login == 'dependabot[bot]' || github.event.pull_request.user.login == 'pre-commit-ci[bot]' }}
1515
steps:
16-
- uses: actions/checkout@v5
16+
- uses: actions/checkout@v6
1717

1818
- name: Label bot PRs
1919
run: gh pr edit --add-label "ci,skip-changelog" ${{ github.event.pull_request.html_url }}

.github/workflows/building_nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313

1414
steps:
1515
- name: Checkout repository
16-
uses: actions/checkout@v5
16+
uses: actions/checkout@v6
1717

1818
- name: Set up Python
1919
uses: actions/setup-python@v6

.github/workflows/documentation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
steps:
2020
- name: Checkout repository
21-
uses: actions/checkout@v5
21+
uses: actions/checkout@v6
2222
with:
2323
fetch-depth: 40
2424

.github/workflows/examples.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313

1414
steps:
1515
- name: Checkout repository
16-
uses: actions/checkout@v5
16+
uses: actions/checkout@v6
1717

1818
- name: Setup packages
1919
uses: ./.github/actions/setup

.github/workflows/linting.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
steps:
2020
- name: Checkout repository
21-
uses: actions/checkout@v5
21+
uses: actions/checkout@v6
2222
with:
2323
fetch-depth: 40
2424

.github/workflows/testing_full.yml

Lines changed: 2 additions & 25 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,19 +27,10 @@ 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
56-
uses: actions/checkout@v5
33+
uses: actions/checkout@v6
5734

5835
- name: Setup packages
5936
uses: ./.github/actions/setup

.github/workflows/testing_full_gpu.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ jobs:
1313

1414
steps:
1515
- name: Checkout repository
16-
uses: actions/checkout@v5
16+
uses: actions/checkout@v6
1717

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: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,11 @@ 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
33-
uses: actions/checkout@v5
27+
uses: actions/checkout@v6
3428
with:
3529
fetch-depth: 40
3630

.github/workflows/testing_minimal.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
steps:
2020
- name: Checkout repository
21-
uses: actions/checkout@v5
21+
uses: actions/checkout@v6
2222
with:
2323
fetch-depth: 40
2424

0 commit comments

Comments
 (0)