Skip to content

Commit

Permalink
Follow other steps for setting up virtual env
Browse files Browse the repository at this point in the history
  • Loading branch information
Jay Chia committed Jun 24, 2023
1 parent ceb98f9 commit 69b39b7
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -174,8 +174,13 @@ jobs:
with:
name: wheels
path: dist
- name: Setup Virtual Env
run: |
python -m venv venv
echo "$GITHUB_WORKSPACE/venv/bin" >> $GITHUB_PATH
- name: Install Daft and dev dependencies
run: |
pip install --upgrade pip
pip install -r requirements-dev.txt
pip install dist/${{ env.package-name }}-*x86_64*.whl --force-reinstall
rm -rf daft
Expand Down Expand Up @@ -236,6 +241,10 @@ jobs:
with:
name: wheels
path: dist
- name: Setup Virtual Env
run: |
python -m venv venv
echo "$GITHUB_WORKSPACE/venv/bin" >> $GITHUB_PATH
- name: Install Daft and dev dependencies
run: |
pip install --upgrade pip
Expand Down

0 comments on commit 69b39b7

Please sign in to comment.