Skip to content

Commit 8ba28f4

Browse files
authored
Merge branch 'master' into models/polynormer
2 parents c7535a0 + d97b360 commit 8ba28f4

File tree

13 files changed

+30
-23
lines changed

13 files changed

+30
-23
lines changed

.github/actions/setup/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ inputs:
66
default: '3.9'
77
torch-version:
88
required: false
9-
default: '2.5.0'
9+
default: '2.6.0'
1010
cuda-version:
1111
required: false
1212
default: cpu
1313
torchvision-version:
1414
required: false
15-
default: '0.20.0'
15+
default: '0.21.0'
1616
full_install:
1717
required: false
1818
default: true
File renamed without changes.
File renamed without changes.

.github/workflows/full_testing.yml renamed to .github/workflows/testing_full.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ jobs:
1616
fail-fast: false
1717
matrix:
1818
os: [ubuntu-latest, windows-latest, macos-14]
19-
python-version: ['3.9', '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, nightly]
19+
python-version: ['3.9']
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, nightly]
2121
include:
2222
- torch-version: 1.13.0
2323
torchvision-version: 0.14.0
@@ -33,6 +33,8 @@ jobs:
3333
torchvision-version: 0.19.0
3434
- torch-version: 2.5.0
3535
torchvision-version: 0.20.0
36+
- torch-version: 2.6.0
37+
torchvision-version: 0.21.0
3638
- torch-version: nightly
3739
torchvision-version: nightly
3840
exclude:
@@ -44,10 +46,6 @@ jobs:
4446
torch-version: 2.1.0
4547
- os: macos-14
4648
torch-version: 2.2.0
47-
# TODO Some dependency version conflict lets pytest crash on Windows/3.10/2.4.0
48-
- os: windows-latest
49-
python-version: '3.10'
50-
torch-version: 2.4.0
5149

5250
steps:
5351
- name: Checkout repository
File renamed without changes.

.github/workflows/testing.yml renamed to .github/workflows/testing_latest.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Testing PyTorch 2.5
1+
name: Testing latest PyTorch
22

33
on: # yamllint disable-line rule:truthy
44
push:
@@ -67,7 +67,7 @@ jobs:
6767
6868
- name: Run tests
6969
if: steps.changed-files-specific.outputs.only_changed != 'true'
70-
timeout-minutes: 10
70+
timeout-minutes: 15
7171
run: |
7272
pytest --cov --cov-report=xml --durations 10
7373

.github/workflows/minimal_testing.yml renamed to .github/workflows/testing_minimal.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Testing minimal PyTorch 2.5
1+
name: Testing minimal PyTorch
22

33
on: # yamllint disable-line rule:truthy
44
push:

.github/workflows/latest_testing.yml renamed to .github/workflows/testing_nightly.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Testing PyTorch nightly
1+
name: Testing nightly PyTorch
22

33
on: # yamllint disable-line rule:truthy
44
push:
@@ -13,7 +13,7 @@ concurrency:
1313

1414
jobs:
1515

16-
latest_pytest:
16+
nightly_pytest:
1717
runs-on: ubuntu-latest
1818

1919
steps:

.github/workflows/prev_testing.yml renamed to .github/workflows/testing_prev.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Testing previous PyTorch versions
1+
name: Testing previous PyTorch
22

33
on: # yamllint disable-line rule:truthy
44
push:
@@ -19,14 +19,14 @@ jobs:
1919
strategy:
2020
fail-fast: false
2121
matrix:
22-
torch-version: [1.13.0, 2.1.0, 2.4.0]
22+
torch-version: [1.13.0, 2.1.0, 2.5.0]
2323
include:
2424
- torch-version: 1.13.0
2525
torchvision-version: 0.14.0
2626
- torch-version: 2.1.0
2727
torchvision-version: 0.16.0
28-
- torch-version: 2.4.0
29-
torchvision-version: 0.19.0
28+
- torch-version: 2.5.0
29+
torchvision-version: 0.21.0
3030

3131
steps:
3232
- name: Checkout repository
@@ -64,6 +64,6 @@ jobs:
6464
6565
- name: Run tests
6666
if: steps.changed-files-specific.outputs.only_changed != 'true'
67-
timeout-minutes: 10
67+
timeout-minutes: 15
6868
run: |
6969
pytest

CHANGELOG.md

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

1010
- Added `Polynormer` model and example ([#9908](https://github.com/pyg-team/pytorch_geometric/pull/9908))
11+
- Added PyTorch 2.6 support ([#10170](https://github.com/pyg-team/pytorch_geometric/pull/10170))
1112
- Added support for heterogenous graphs in `GNNExplainer` ([#10158](https://github.com/pyg-team/pytorch_geometric/pull/10158))
1213
- Added Graph Positional and Structural Encoder (GPSE) ([#9018](https://github.com/pyg-team/pytorch_geometric/pull/9018))
1314
- Added attract-repel link prediction example ([#10107](https://github.com/pyg-team/pytorch_geometric/pull/10107))

0 commit comments

Comments
 (0)