Skip to content

Commit

Permalink
Fix CI error (#273)
Browse files Browse the repository at this point in the history
Fix CI errors
use `pip install build` instead of `pip install .[build]`
  • Loading branch information
jkawamoto authored Aug 15, 2024
1 parent 5af5a3a commit 0f35101
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[build]
pip install build
- name: Build sdist and wheel
run: |
python -m build
- name: Publish distribution to PyPI
if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@release/v1
uses: pypa/gh-action-pypi-publish@release/v1

0 comments on commit 0f35101

Please sign in to comment.