Skip to content

Commit

Permalink
regular old-fashioned pip install
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcoGorelli committed Aug 12, 2024
1 parent 8d329e4 commit c7a31f0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 13 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,7 @@ jobs:
- name: Install Python dependencies
working-directory: py-polars
run: |
uv pip install --compile-bytecode -r requirements-dev.txt --verbose
uv pip install --compile-bytecode -r requirements-ci.txt --verbose
run: pip install -r requirements-dev.txt -r requirements-ci.txt --verbose

- name: Set up Rust
run: rustup show
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/test-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,9 +103,7 @@ jobs:
- name: Install Python dependencies
working-directory: py-polars
run: |
uv pip install --compile-bytecode -r requirements-dev.txt --verbose
uv pip install --compile-bytecode -r requirements-ci.txt --verbose
run: pip install -r requirements-dev.txt -r requirements-ci.txt --verbose

- name: Set up Rust
run: rustup component add llvm-tools-preview
Expand Down
7 changes: 1 addition & 6 deletions .github/workflows/test-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,12 +66,7 @@ jobs:
- name: Install Python dependencies
run: |
pip install uv
uv pip install --compile-bytecode -r requirements-dev.txt --verbose
if [ "$(uname)" = "Linux" ]; then
uv pip install --compile-bytecode --extra-index-url https://download.pytorch.org/whl/cpu -r requirements-ci.txt --verbose
else
uv pip install --compile-bytecode -r requirements-ci.txt --verbose
fi
pip install -r requirements-dev.txt -r requirements-ci.txt --verbose
- name: Set up Rust
run: rustup show
Expand Down

0 comments on commit c7a31f0

Please sign in to comment.