Skip to content

Conversation

@bishoy-at-pieces
Copy link
Collaborator

No description provided.

Copilot AI review requested due to automatic review settings October 16, 2025 22:07
@cursor
Copy link

cursor bot commented Oct 16, 2025

You have run out of free Bugbot PR reviews for this billing cycle. This will reset on November 2.

To receive reviews on all of your PRs, visit the Cursor dashboard to activate Pro and start your 14-day free trial.

Copy link
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull Request Overview

Adds an explicit Poetry installation step in the build workflow to ensure Poetry is available before publishing to PyPI.

  • Installs Poetry prior to running poetry publish
  • Aims to fix failing publish step caused by missing Poetry on runner

Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.

mkdir dist
cp macos-latest/*.tar.gz macos-latest/*.whl ./dist/
export POETRY_PYPI_TOKEN_PYPI=${{ secrets.pypi_token }}
pip install poetry
Copy link

Copilot AI Oct 16, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[nitpick] Installing Poetry without a pinned version reduces build reproducibility and may introduce unexpected behavior if a new Poetry release has breaking changes. Consider pinning a specific version and invoking via the runner's Python explicitly, e.g.: python -m pip install --upgrade 'poetry==<expected_version>' or using the official install action/pipx for isolation.

Suggested change
pip install poetry
python -m pip install --upgrade 'poetry==1.7.1'

Copilot uses AI. Check for mistakes.
@bishoy-at-pieces bishoy-at-pieces merged commit b0e786b into main Oct 16, 2025
7 checks passed
@bishoy-at-pieces bishoy-at-pieces deleted the fix-ci branch October 16, 2025 22:10
@bishoy-at-pieces bishoy-at-pieces restored the fix-ci branch October 16, 2025 22:22
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants