Try activating venv

release/4.3a0
Frank Dellaert 2024-08-25 12:07:47 -07:00
parent 1c8c1f2e79
commit c3503064c8
1 changed files with 5 additions and 1 deletions

View File

@ -174,7 +174,11 @@ jobs:
- name: Install Python Dependencies
shell: bash
run: python$PYTHON_VERSION -m pip install -r python/dev_requirements.txt
run: |
if [ "${{ runner.os }}" == "macOS" ]; then
source venv/bin/activate
fi
python$PYTHON_VERSION -m pip install -r python/dev_requirements.txt
- name: Build
shell: bash