diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cdf09b1..8a396f3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -39,20 +39,12 @@ jobs: steps: - uses: actions/checkout@v4 - - name: Set up Python - uses: actions/setup-python@v4 - with: - python-version: '3.9' - - - name: Install Poetry - uses: snok/install-poetry@v1.3.1 - - - name: Install dependencies - run: poetry install + - name: Install uv + uses: astral-sh/setup-uv@v4 - name: Build and Publish to PyPI env: POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_API_TOKEN }} run: | - poetry build - poetry publish + uv build + uv publish \ No newline at end of file