feat: add PEP 723 inline script metadata to examples#505
Draft
tkoyama010 wants to merge 2 commits intomainfrom
Draft
feat: add PEP 723 inline script metadata to examples#505tkoyama010 wants to merge 2 commits intomainfrom
tkoyama010 wants to merge 2 commits intomainfrom
Conversation
Add PEP 723 compliant metadata blocks to all Python example scripts to specify dependencies and Python version requirements. This enables tools to automatically resolve dependencies when running these scripts as standalone files. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
Contributor
There was a problem hiding this comment.
Pull Request Overview
Adds PEP 723 inline script metadata to all Python example scripts, specifying Python version and dependencies to enable automatic tool-based resolution.
- Inserts a
# /// scriptmetadata block at the top of each example - Sets
requires-python = ">=3.8"in every script - Lists the necessary dependencies (
scikit-gmshand, where needed,pyvista)
Reviewed Changes
Copilot reviewed 6 out of 6 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| examples/quad.py | Added PEP 723 metadata block with scikit-gmsh dependency |
| examples/polygon_with_hole.py | Added PEP 723 metadata block with scikit-gmsh dependency |
| examples/icosahedron.py | Added PEP 723 metadata block with pyvista and scikit-gmsh |
| examples/cylinder.py | Added PEP 723 metadata block with pyvista and scikit-gmsh |
| examples/capsule.py | Added PEP 723 metadata block with pyvista and scikit-gmsh |
| examples/better_cell_size.py | Added PEP 723 metadata block with pyvista and scikit-gmsh |
auto-merge was automatically disabled
July 17, 2025 03:30
Pull request was converted to draft
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.
Summary
Test plan
🤖 Generated with Claude Code