Add publish workflow#3
Conversation
|
Note Gemini is unable to generate a review for this pull request due to the file types involved not being currently supported. |
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: b0599f6127
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| uses: astral-sh/setup-uv@v3 | ||
|
|
||
| - name: Build | ||
| run: uv run --with build python -m build |
There was a problem hiding this comment.
Avoid syncing dev deps when building release artifacts
The Build command uses uv run in project mode, which (per uv help run) creates/updates the project environment and includes default dependency groups unless --no-dev/--no-default-groups is set. In this repo, pyproject.toml defines a heavy dev group (including aim), so publishing now depends on unrelated dev dependency resolution and mirror availability; a transient dev-package/index failure can block PyPI releases even when the package itself is buildable.
Useful? React with 👍 / 👎.
No description provided.