Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ inputs:
default: '3.10'
torch-version:
required: false
default: '2.10'
default: '2.11'
cuda-version:
required: false
default: cpu
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ jobs:
include:
- {torch-version: '2.7', python-version: '3.10'}
- {torch-version: '2.7', python-version: '3.13'}
- {torch-version: '2.10', python-version: '3.10'}
- {torch-version: '2.10', python-version: '3.14'}
- {torch-version: '2.11', python-version: '3.10'}
- {torch-version: '2.11', python-version: '3.14'}
- {torch-version: 'nightly', python-version: '3.10'}
- {torch-version: 'nightly', python-version: '3.14'}

Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ repos:
hooks:
- id: mypy
name: Check types
additional_dependencies: [torch==2.9.*]
additional_dependencies: [torch==2.11.*]
exclude: "^test/|^examples/|^benchmark/"

- repo: https://github.com/executablebooks/mdformat
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).

### Added

- Added support for PyTorch 2.11
- Added support for PyTorch 2.10 and Python 3.14 ([#590](https://github.com/pyg-team/pytorch-frame/pull/590))

### Changed
Expand Down
2 changes: 1 addition & 1 deletion docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
https://download.pytorch.org/whl/cpu/torch-2.9.0%2Bcpu-cp310-cp310-manylinux_2_28_x86_64.whl
https://download.pytorch.org/whl/cpu/torch-2.11.0%2Bcpu-cp310-cp310-manylinux_2_28_x86_64.whl
git+https://github.com/pyg-team/pyg_sphinx_theme.git
2 changes: 1 addition & 1 deletion test/nn/models/test_compile.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from torch_frame.testing import withPackage


@withPackage("torch>=2.11.0")
@withPackage("torch>=2.12.0")
@pytest.mark.parametrize(
"model_cls, model_kwargs, stypes, expected_graph_breaks",
[
Expand Down
Loading