Skip to content

Commit

Permalink
Simplify pip
Browse files Browse the repository at this point in the history
  • Loading branch information
Rigidity committed Jul 16, 2024
1 parent 5e8ba32 commit 87a587e
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ jobs:
uses: dtolnay/rust-toolchain@stable

- name: Install dependencies
run: python -m pip install maturin
run: pip install maturin

- name: Build MacOS wheel (Python ${{ matrix.python }})
if: matrix.os.matrix == 'macos'
Expand Down Expand Up @@ -256,7 +256,7 @@ jobs:
python-version: 3.12

- name: Install dependencies
run: python -m pip install mypy black
run: pip install mypy black

- name: python mypy
run: mypy --ignore-missing-imports tests
Expand Down Expand Up @@ -319,9 +319,7 @@ jobs:
- uses: chia-network/actions/activate-venv@main

- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install maturin colorama clvm_tools
run: pip install maturin colorama clvm_tools

- name: Build
run: maturin develop --release -m wheel/Cargo.toml
Expand Down

0 comments on commit 87a587e

Please sign in to comment.