Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 3 additions & 6 deletions .github/workflows/build_python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,7 @@ jobs:
- name: Build
run: |
pip3 install cmake==3.24.0
python setup.py build
python setup.py install --user
pip3 install .
- name: Test
run: python -m pytest --ignore docs --ignore dlib

Expand All @@ -58,8 +57,7 @@ jobs:
run: pip install pytest numpy
- name: Build
run: |
python setup.py build
python setup.py install --user
pip install .
- name: Test
run: python -m pytest --ignore docs --ignore dlib

Expand All @@ -73,8 +71,7 @@ jobs:
# run: pip3 install pytest numpy
# - name: Build
# run: |
# python3 setup.py build
# python3 setup.py install --user
# pip install .
# - name: Test
# run: python3 -m pytest --ignore docs --ignore dlib

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[build-system]
requires = ["setuptools", "wheel", "packaging"]
requires = ["setuptools", "wheel", "packaging", "cmake"]
build-backend = "setuptools.build_meta"

Loading