Skip to content

Bump torch-geometric from 2.3.0 to 2.6.1#2

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/pip/torch-geometric-2.6.1
Closed

Bump torch-geometric from 2.3.0 to 2.6.1#2
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/pip/torch-geometric-2.6.1

Conversation

@dependabot
Copy link
Copy Markdown

@dependabot dependabot Bot commented on behalf of github Mar 6, 2025

Bumps torch-geometric from 2.3.0 to 2.6.1.

Release notes

Sourced from torch-geometric's releases.

PyG 2.6.1: Bugfixes

PyG 2.6.1 includes a bugfix in the WebQSDataset.

Bug Fixes

  • Fixed a bug in the WebQSDataset dataset where empty edges were not treated gracefully (#9665)

Full Changelog: pyg-team/pytorch_geometric@2.6.0...2.6.1

PyG 2.6.0

We are excited to announce the release of PyG 2.6 🎉🎉🎉

PyG 2.6 is the culmination of work from 59 contributors who have worked on features and bug-fixes for a total of over 238 commits since torch-geometric==2.5.0.

Highlights

PyTorch 2.4 Support

PyG 2.6 is fully compatible with PyTorch 2.4, and supports the following combinations:

PyTorch 2.2 cpu cu118 cu121 cu124
Linux
macOS
Windows

You can still install PyG 2.6 with an older PyTorch release up to PyTorch 1.13 in case you are not eager to update your PyTorch version.

GNNs+LLMs

In order to facilitate further research on combining GNNs with LLMs, PyG 2.6 introduces

Index Tensor Representation

Similar to the EdgeIndex class introduced in PyG 2.5, torch-geometric==2.6.0 introduces the Index class for efficient storage of 1D indices. While Index sub-classes a general torch.Tensor, it can hold additional (meta)data, i.e.:

  • dim_size: The size of the underlying sparse vector, i.e. the size of a dimension that can be indexed via Index. By default, it is inferred as dim_size=index.max() + 1
  • is_sorted: Whether indices are sorted in ascending order.

... (truncated)

Changelog

Sourced from torch-geometric's changelog.

Changelog

All notable changes to this project will be documented in this file. The format is based on Keep a Changelog.

[2.7.0] - 2025-MM-DD

Added

  • Improving documentation for cuGraph (#10083)
  • Added HashTensor (#10072)
  • Added SGFormer model and example (#9904)
  • Added AveragePopularity metric for link prediction (#10022)
  • Added Personalization metric for link prediction (#10015)
  • Added HitRatio metric for link prediction (#10013)
  • Added Data Splitting Tutorial (#8366)
  • Added Diversity metric for link prediction (#10009)
  • Added Coverage metric for link prediction (#10006)
  • Added Graph Transformer Tutorial (#8144)
  • Consolidate Cugraph examples into ogbn_train_cugraph.py and ogbn_train_cugraph_multigpu.py for ogbn-arxiv, ogbn-products and ogbn-papers100M (#9953)
  • Added InstructMol dataset (#9975)
  • Added support for weighted LinkPredRecall metric (#9947)
  • Added support for weighted LinkPredNDCG metric (#9945)
  • Added LinkPredMetricCollection (#9941)
  • Added various GRetriever architecture benchmarking examples (#9666)
  • Added profiler.nvtxit with some examples (#9666)
  • Added loader.RagQueryLoader with Remote Backend Example (#9666)
  • Added data.LargeGraphIndexer (#9666)
  • Added GIT-Mol (#9730)
  • Added comment in g_retriever.py pointing to Neo4j Graph DB integration demo (#9748)
  • Added MoleculeGPT example (#9710)
  • Added nn.models.GLEM (#9662)
  • Added TAGDataset (#9662)
  • Added support for fast Delaunay() triangulation via the torch_delaunay package (#9748)
  • Added PyTorch 2.5 support (#9779, #9779)
  • Support 3D tetrahedral mesh elements of shape [4, num_faces] in the FaceToEdge transformation (#9776)
  • Added the use_pcst option to WebQSPDataset (#9722)
  • Allowed users to pass edge_weight to GraphUNet models (#9737)
  • Consolidated examples/ogbn_{papers_100m,products_gat,products_sage}.py into examples/ogbn_train.py (#9467)
  • Add ComplexWebQuestions (CWQ) dataset (#9950)

Changed

  • Updated cuGraph examples to use buffered sampling which keeps data in memory and is significantly faster than the deprecated buffered sampling (#10079)
  • Updated Dockerfile to use latest from NVIDIA (#9794)
  • Dropped Python 3.8 support (#9696)
  • Added a check that confirms that custom edge types of NumNeighbors actually exist in the graph (#9807)
  • Automatic num_params in LLM + update GRetriever default llm (#9938)

Deprecated

... (truncated)

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [torch-geometric](https://github.com/pyg-team/pytorch_geometric) from 2.3.0 to 2.6.1.
- [Release notes](https://github.com/pyg-team/pytorch_geometric/releases)
- [Changelog](https://github.com/pyg-team/pytorch_geometric/blob/master/CHANGELOG.md)
- [Commits](pyg-team/pytorch_geometric@2.3.0...2.6.1)

---
updated-dependencies:
- dependency-name: torch-geometric
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python Pull requests that update python code labels Mar 6, 2025
@dependabot @github
Copy link
Copy Markdown
Author

dependabot Bot commented on behalf of github Oct 16, 2025

Superseded by #12.

@dependabot dependabot Bot closed this Oct 16, 2025
@dependabot dependabot Bot deleted the dependabot/pip/torch-geometric-2.6.1 branch October 16, 2025 17:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file python Pull requests that update python code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants