Skip to content

Commit 0f35101

Browse files
authored
Fix CI error (#273)
Fix CI errors use `pip install build` instead of `pip install .[build]`
1 parent 5af5a3a commit 0f35101

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: .github/workflows/python-publish.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ jobs:
2929
- name: Install dependencies
3030
run: |
3131
python -m pip install --upgrade pip
32-
pip install .[build]
32+
pip install build
3333
- name: Build sdist and wheel
3434
run: |
3535
python -m build
3636
- name: Publish distribution to PyPI
3737
if: startsWith(github.ref, 'refs/tags')
38-
uses: pypa/gh-action-pypi-publish@release/v1
38+
uses: pypa/gh-action-pypi-publish@release/v1

0 commit comments

Comments
 (0)