Skip to content

Commit

Permalink
github/ci: setting up virtual environment
Browse files Browse the repository at this point in the history
  • Loading branch information
jgaeddert committed May 3, 2024
1 parent 8a544fa commit 5f5348f
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,11 @@ jobs:
if: runner.os == 'macOS'
run: brew install pybind11

- name: Setup python dependencies (pip)
run: sudo -H python3 -m pip install pybind11 numpy matplotlib
- name: Setup python environment and install dependencies (pip)
run: |
python3 -m venv /tmp/liquid
source /tmp/liquid/bin/activate
python3 -m pip install pybind11 numpy matplotlib
- name: bootstrap
run: ./bootstrap.sh
Expand Down

0 comments on commit 5f5348f

Please sign in to comment.