Skip to content

Commit 5748fd2

Browse files
committed
chore: remove pip install command from GitHub Actions workflow to resolve numpy source directory issue
1 parent 02ae09e commit 5748fd2

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.github/workflows/test-build.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,8 @@ jobs:
3535
sudo apt-get update
3636
sudo apt-get install -y build-essential
3737
38-
- name: Install Python dependencies
39-
run: |
40-
python -m pip install --upgrade pip
41-
pip install -e .
38+
# REMOVED: pip install -e . (this was causing the numpy source directory issue)
39+
# The build scripts will handle all dependency installation
4240

4341
- name: Build executable (Linux)
4442
if: runner.os == 'Linux'

0 commit comments

Comments
 (0)