Skip to content

Commit

Permalink
fix: conflicting python version
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelgold authored Nov 29, 2023
1 parent 4af7ddf commit c3df60e
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/build-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,11 @@ jobs:

- name: Make Wheel
run: |
pip install setuptools
pip3 install setuptools
$PYTHON3 = `which python3`
$PYTHON = `which python`
sudo rm $PYTHON3
ln -s $PYTHON $PYTHON3
python ./blender/build_files/utils/make_bpy_wheel.py ./build_linux_bpy/bin/
- name: Upload Wheel as Artifact
Expand Down

0 comments on commit c3df60e

Please sign in to comment.