-
Notifications
You must be signed in to change notification settings - Fork 23
CI: Migrate GitHub Actions workflows to use uv #735
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
tkoyama010
wants to merge
29
commits into
main
Choose a base branch
from
update-github-actions-uv
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
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
updates: - [github.com/pre-commit/mirrors-mypy: v1.16.0 → v1.16.1](pre-commit/mirrors-mypy@v1.16.0...v1.16.1) - [github.com/python-jsonschema/check-jsonschema: 0.33.0 → 0.33.1](python-jsonschema/check-jsonschema@0.33.0...0.33.1) - [github.com/astral-sh/ruff-pre-commit: v0.11.13 → v0.12.1](astral-sh/ruff-pre-commit@v0.11.13...v0.12.1)
- Add PLC0415 to ignore list for import statements not at top-level - Convert boolean positional arguments to keyword-only where appropriate - Update _setup_off_screen calls to use keyword arguments - Add noqa comments for legitimate boolean positional arguments (show parameter) 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
for more information, see https://pre-commit.ci
- Remove PLC0415 from global ignore list in pyproject.toml - Add PLC0415 noqa comments to specific lines where imports are intentionally inside functions for runtime checking 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
updates: - [github.com/pre-commit/mirrors-mypy: v1.16.0 → v1.17.1](pre-commit/mirrors-mypy@v1.16.0...v1.17.1) - [github.com/pre-commit/pre-commit-hooks: v5.0.0 → v6.0.0](pre-commit/pre-commit-hooks@v5.0.0...v6.0.0) - [github.com/python-jsonschema/check-jsonschema: 0.33.0 → 0.33.2](python-jsonschema/check-jsonschema@0.33.0...0.33.2) - [github.com/astral-sh/ruff-pre-commit: v0.11.13 → v0.12.8](astral-sh/ruff-pre-commit@v0.11.13...v0.12.8)
Replace pip with uv for faster and more reliable package installation: - Update ci.yml to use uv for all three jobs (pip-pre, pip, conda) - Update docbuild.yml to use uv for documentation builds - Update release.yml to use uv for package building - Remove redundant pip cache configuration as uv has built-in caching 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
Add --system flag to all uv pip commands to install packages into the system Python environment instead of trying to create/use a virtual environment.
…sta/pyvistaqt into pre-commit-ci-update-config
…b8935a90964ed44384a8c4cc.json
- Apply prettier formatting to Google Analytics code in layout.html - Add .prettierignore to exclude node_modules from formatting 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
for more information, see https://pre-commit.ci
Replace zipball URL format with git+https format for installing pyvista and qtpy from GitHub. The uv package manager doesn't recognize the zipball format but supports git+https URLs. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
…/pyvistaqt into update-github-actions-uv
…sta/pyvistaqt into update-github-actions-uv
- Add noqa: FBT001 comments to Optional[bool] parameters in plotting.py - Add noqa: FBT001 comment to Optional[bool] parameter in utils.py 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
Contributor
|
@tkoyama010 it looks like this is actually close to working, just a couple of CIs fail |
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
Benefits