Skip to content

Commit f454cc9

Browse files
committed
CI: more fixes
1 parent 1658f8e commit f454cc9

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Install dependencies
3030
run: |
3131
python -m pip install --upgrade pip
32-
pip install build setuptools "blessed>=1.5" cwcwidth pyte pytest
32+
pip install build setuptools wheel "blessed>=1.5" cwcwidth pyte pytest
3333
- name: Build with Python ${{ matrix.python-version }}
3434
run: |
3535
python -m build -n .

.github/workflows/publish-twine.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,10 @@ jobs:
1616
- name: Install dependencies
1717
run: |
1818
python -m pip install --upgrade pip
19-
pip install setuptools wheel "blessed>=1.5" cwcwidth
19+
pip install build setuptools wheel "blessed>=1.5" cwcwidth
2020
- name: Build sdist
2121
run: |
22-
python setup.py sdist
23-
python setup.py bdist_wheel
22+
python -m build -n -s -w
2423
- name: Publish to PyPI
2524
uses: pypa/gh-action-pypi-publish@release/v1
2625
with:

0 commit comments

Comments
 (0)