Skip to content

Commit b5de15c

Browse files
committed
Use python build
1 parent cb8b61d commit b5de15c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/python-package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
run: |
2626
python -m pip install --upgrade pip setuptools
2727
python -m pip list
28-
python -m pip install flake8 pytest wheel
28+
python -m pip install flake8 pytest wheel build
2929
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
3030
- name: Lint with flake8
3131
run: |
@@ -35,4 +35,4 @@ jobs:
3535
flake8 . --count --exit-zero --max-complexity=15 --max-line-length=127 --statistics
3636
- name: Installation
3737
run: |
38-
python setup.py sdist bdist_wheel --universal
38+
python -m build --wheel --no-isolation

0 commit comments

Comments
 (0)