Skip to content

Commit 7972294

Browse files
committed
Use global python for build
1 parent 3263674 commit 7972294

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/test_accuracy.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,10 @@ jobs:
4040
sudo bash src/cpp/install_dependencies.sh
4141
- name: Build CPP Test
4242
run: |
43-
source venv/bin/activate
4443
mkdir build && cd build
45-
cmake ../tests/cpp/accuracy/ -DPython_ROOT_DIR=$(python -c "import sys; print(sys.prefix)")
44+
pip install nanobind==2.4.0
45+
pip install typing_extensions==4.12.2
46+
cmake ../tests/cpp/accuracy/
4647
make -j
4748
- name: Run CPP Test
4849
run: |

0 commit comments

Comments
 (0)