We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18b6a5a commit 370ba95Copy full SHA for 370ba95
.github/workflows/main.yml
@@ -22,10 +22,10 @@ jobs:
22
python-version: "3.12"
23
24
- name: Install cibuildwheel
25
- run: pip install cibuildwheel<3 poetry
+ run: pip install "cibuildwheel<3"
26
27
- name: Build wheels
28
run: cibuildwheel --output-dir dist
29
30
- name: Deploy wheels
31
- run: poetry config pypi-token.pypi ${{ secrets.POETRY_PYPI_TOKEN_PYPI }} && poetry publish
+ run: pip install poetry && poetry config pypi-token.pypi ${{ secrets.POETRY_PYPI_TOKEN_PYPI }} && poetry publish
0 commit comments