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 cb8b61d commit b5de15cCopy full SHA for b5de15c
.github/workflows/python-package.yml
@@ -25,7 +25,7 @@ jobs:
25
run: |
26
python -m pip install --upgrade pip setuptools
27
python -m pip list
28
- python -m pip install flake8 pytest wheel
+ python -m pip install flake8 pytest wheel build
29
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
30
- name: Lint with flake8
31
@@ -35,4 +35,4 @@ jobs:
35
flake8 . --count --exit-zero --max-complexity=15 --max-line-length=127 --statistics
36
- name: Installation
37
38
- python setup.py sdist bdist_wheel --universal
+ python -m build --wheel --no-isolation
0 commit comments