Open
Conversation
Run `pre-commit run --all-files`.
Fixes linter warning: numpydoc-validation flagged mismatched underline lengths in docstring section headers.
Fixes linter warning: numpydoc-validation flagged GL08 (missing docstring) on 4 modules.
Run `pre-commit run --all-files`.
Run `pre-commit run --all-files`.
After adding these, running `pre-commit run --all-files` indicates no existing issues.
Run `codespell --write-changes`, then manually correct.
Fix grammar using Claude Haiku 4.5, then manually correct. Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
Use `return 1` instead of `exit 1` so that sourcing the script with an invalid platform prints the error without killing the shell. Fixes geometric-intelligence#305
Verify that `source uv_env_setup.sh INVALID` does not kill the user's shell (uses return instead of exit).
Replace if/elif chain with case statement and string concatenation. No functional changes.
torch >= 2.6 defaults to weights_only=True, which breaks OGB's torch.load calls that serialize PyG data classes. Register the needed classes as safe globals so datasets load without errors. Guarded with hasattr for compatibility with torch < 2.6.
Prevents PyG's fs.torch_load from falling back to weights_only=False when loading processed datasets that contain numpy scalars and dtypes. Includes numpy.dtypes.*DType subclasses for numpy >= 1.25.
torch.tensor(existing_tensor) is deprecated; use .detach().clone(). nx.from_numpy_matrix is removed in NetworkX 3.0; use from_numpy_array.
This was referenced Apr 11, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Checklist
PR series: #303 #307 308 #309
This PR is only for commits 1b244e5..70959fc. It is number 3 in a series of staged PRs, building upon #305 by adding commits 1b244e5..70959fc; if #305 is rejected, the commits in this PR need to be reviewed.
Description
This PR fixes deprecation warnings in preparation for my subsequent PR to unpin torch. It includes commits
torch.load. This is good practice vs. allowing PyG to fall back toweights_only=False. Currently this provides no security benefit, but it will do in the future if my PyG PR is accepted.Overall, the 4 commits in this PR should be fairly benign, reduce various warning messages, and make TopoBench more amenable to upgrade beyond torch 2.3.0.
Issue
This is preparation for fixing issue #306.