From 7b97c636860332201a53fc09983d827af6e066f6 Mon Sep 17 00:00:00 2001 From: Akihiro Nitta Date: Wed, 25 Mar 2026 03:06:11 +0000 Subject: [PATCH 1/7] update --- .github/workflows/_build_linux.yml | 4 ++-- .github/workflows/utils/full_matrix_linux.json | 5 +++++ .github/workflows/utils/minimal_matrix_linux.json | 5 +++++ 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/.github/workflows/_build_linux.yml b/.github/workflows/_build_linux.yml index 2c02f900..d2af3a65 100644 --- a/.github/workflows/_build_linux.yml +++ b/.github/workflows/_build_linux.yml @@ -57,7 +57,7 @@ jobs: # Disk space required for CPU builds is usually small enough, so we # save a few minutes by skipping this step. if: ${{ matrix.cuda-version != 'cpu' }} - uses: jlumbroso/free-disk-space@v1.3.1 + uses: jlumbroso/free-disk-space@54081f138730dfa15788a46383842cd2f914a1be # v1.3.1 with: android: true dotnet: true @@ -71,7 +71,7 @@ jobs: uses: astral-sh/setup-uv@37802adc94f370d6bfd71619e3f0bf239e1f3b78 # v7.6.0 with: # NOTE: This is a version used for cibuildwheel but not for wheels. - python-version: '3.11' + python-version: '3.14' activate-environment: true - name: Install dependencies diff --git a/.github/workflows/utils/full_matrix_linux.json b/.github/workflows/utils/full_matrix_linux.json index 4c566a19..1f04ddfd 100644 --- a/.github/workflows/utils/full_matrix_linux.json +++ b/.github/workflows/utils/full_matrix_linux.json @@ -1,4 +1,9 @@ [ + { + "torch-version": "2.12.0", + "python-version": ["3.14"], + "cuda-version": ["cu132"] + }, { "torch-version": "2.11.0", "python-version": ["3.10", "3.11", "3.12", "3.13", "3.14"], diff --git a/.github/workflows/utils/minimal_matrix_linux.json b/.github/workflows/utils/minimal_matrix_linux.json index f3317fb1..7ff2b8ff 100644 --- a/.github/workflows/utils/minimal_matrix_linux.json +++ b/.github/workflows/utils/minimal_matrix_linux.json @@ -1,4 +1,9 @@ [ + { + "torch-version": "2.12.0", + "python-version": ["3.14"], + "cuda-version": ["cu132"] + }, { "torch-version": "2.11.0", "python-version": ["3.10", "3.14"], From f53d6d49cf4552dc494be3f4356315b9a4b2c0ce Mon Sep 17 00:00:00 2001 From: Akihiro Nitta Date: Wed, 25 Mar 2026 03:08:58 +0000 Subject: [PATCH 2/7] nit --- .github/workflows/_build_linux.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/_build_linux.yml b/.github/workflows/_build_linux.yml index d2af3a65..4fe8c96b 100644 --- a/.github/workflows/_build_linux.yml +++ b/.github/workflows/_build_linux.yml @@ -36,13 +36,13 @@ jobs: steps: - name: Login to Docker Hub - uses: docker/login-action@v4 + uses: docker/login-action@b45d80f862d83dbcd57f89517bcf500b2ab88fb2 # v4.0.0 with: username: ${{ inputs.docker-hub-username }} password: ${{ secrets.docker-hub-token }} - name: Configure AWS - uses: aws-actions/configure-aws-credentials@v6 + uses: aws-actions/configure-aws-credentials@8df5847569e6427dd6c4fb1cf565c83acfa8afa7 # v6.0.0 with: aws-access-key-id: ${{ secrets.aws-access-key-id }} aws-secret-access-key: ${{ secrets.aws-secret-access-key }} From 9b7c8072de8d0c10d1c488667b94b4db176b5b50 Mon Sep 17 00:00:00 2001 From: Akihiro Nitta Date: Wed, 25 Mar 2026 03:10:15 +0000 Subject: [PATCH 3/7] changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index ba3f4050..61fd22cf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] ### Added - Added CUDA 13.2 support to `manylinux` Dockerfile ([#614](https://github.com/pyg-team/pyg-lib/pull/614)) +- Added support for PyTorch `2.12.0+cu132` wheels in nightly releases ([#615](https://github.com/pyg-team/pyg-lib/pull/615)) ### Changed ### Deprecated ### Removed From af5f68d06ea4f626a689d957437f2db8afc05c48 Mon Sep 17 00:00:00 2001 From: Akihiro Nitta Date: Wed, 25 Mar 2026 03:12:29 +0000 Subject: [PATCH 4/7] readme --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index cfaa5077..7c2f0ce4 100644 --- a/README.md +++ b/README.md @@ -35,6 +35,12 @@ where The following combinations are supported: +| PyTorch Nightly | `cpu` | `cu126` | `cu128` | `cu129` | `cu130` | `cu132` | +|--------------|-------|---------|---------|---------|---------|---------| +| **Linux** | | | | | | ✅ | +| **Windows** | | | | | | | +| **macOS** | | | | | | | + | PyTorch 2.11 | `cpu` | `cu126` | `cu128` | `cu129` | `cu130` | |--------------|-------|---------|---------|---------|---------| | **Linux** | ✅ | ✅ | ✅ | | ✅ | From de87231d62874795bbcea81df98b20d0687f1c41 Mon Sep 17 00:00:00 2001 From: Akihiro Nitta Date: Wed, 25 Mar 2026 03:14:54 +0000 Subject: [PATCH 5/7] update --- .pre-commit-config.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index a66e5a76..cd1b1caf 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -86,3 +86,13 @@ repos: hooks: - id: sphinx-lint name: Check Sphinx + + - repo: https://github.com/executablebooks/mdformat + rev: 1.0.0 + hooks: + - id: mdformat + name: Format Markdown + additional_dependencies: + - mdformat-gfm + - mdformat-front-matters + - mdformat-footnote From 1d6af84052e155c607ae4d24f4c62401d6bf9fb8 Mon Sep 17 00:00:00 2001 From: Akihiro Nitta Date: Wed, 25 Mar 2026 03:16:28 +0000 Subject: [PATCH 6/7] Revert "update" This reverts commit de87231d62874795bbcea81df98b20d0687f1c41. --- .pre-commit-config.yaml | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index cd1b1caf..a66e5a76 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -86,13 +86,3 @@ repos: hooks: - id: sphinx-lint name: Check Sphinx - - - repo: https://github.com/executablebooks/mdformat - rev: 1.0.0 - hooks: - - id: mdformat - name: Format Markdown - additional_dependencies: - - mdformat-gfm - - mdformat-front-matters - - mdformat-footnote From 3f0e4e6f722a428625f3446cb735a06a43609094 Mon Sep 17 00:00:00 2001 From: Akihiro Nitta Date: Wed, 25 Mar 2026 03:17:15 +0000 Subject: [PATCH 7/7] update --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 7c2f0ce4..10c851cd 100644 --- a/README.md +++ b/README.md @@ -36,10 +36,10 @@ where The following combinations are supported: | PyTorch Nightly | `cpu` | `cu126` | `cu128` | `cu129` | `cu130` | `cu132` | -|--------------|-------|---------|---------|---------|---------|---------| -| **Linux** | | | | | | ✅ | -| **Windows** | | | | | | | -| **macOS** | | | | | | | +| --------------- | ----- | ------- | ------- | ------- | ------- | ------- | +| **Linux** | | | | | | ✅ | +| **Windows** | | | | | | | +| **macOS** | | | | | | | | PyTorch 2.11 | `cpu` | `cu126` | `cu128` | `cu129` | `cu130` | |--------------|-------|---------|---------|---------|---------|