Skip to content

Commit

Permalink
reorder pip install
Browse files Browse the repository at this point in the history
  • Loading branch information
AOS55 committed Mar 15, 2024
1 parent ee9a2f7 commit 199ef43
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,11 @@ jobs:
command: build
args: --release
working-directory: ./pyflyer-rs
- name: Install dependencies
run: |
python -m pip install --upgrade pip
sudo pip install pygame
pip install -e .[deploy]
- name: Install PyRust module
run: |
WHEEL_DIR=./pyflyer-rs/target/wheels
Expand All @@ -41,11 +46,6 @@ jobs:
echo The wheel file: $WHEEL_FILE
done
sudo pip install $WHEEL_FILE
- name: Install dependencies
run: |
python -m pip install --upgrade pip
sudo pip install pygame
pip install -e .[deploy]
- name: Lint with flake8
run: |
pip install flake8
Expand Down

0 comments on commit 199ef43

Please sign in to comment.