Skip to content

Commit

Permalink
Added steps for virtual env and parsl+dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
mercybassey committed Mar 26, 2024
1 parent b7b581f commit f8176df
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/osx.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,15 @@ jobs:
- name: Non-requirements based install
run: |
brew install mpich
brew install mpich
- name: setup virtual env
run: |
python -m venv .venv
source .venv/bin/activate
- name: Install Parsl and dependencies
run: |
source .venv/bin/activate
pip install -r requirements.txt
pip install -r test-requirements.txt

0 comments on commit f8176df

Please sign in to comment.