Skip to content

Commit

Permalink
Try using uv for faster install
Browse files Browse the repository at this point in the history
  • Loading branch information
mcbarton authored Jan 23, 2025
1 parent 92ba7c6 commit 9eb8d99
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/Ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -534,7 +534,8 @@ jobs:
# source virtual environment
source ${{ github.workspace }}/CppInterOp/.venv/bin/activate
cd ${{ github.workspace }}
python -m pip install --upgrade . --no-deps --verbose
python -m pip install uv
python -m uv --verbose install --upgrade . --no-deps
cd ..
- name: Run cppyy
Expand All @@ -556,9 +557,9 @@ jobs:
echo ::group::Prepare For Testing
make all
python -m pip install --upgrade pip
python -m pip install pytest
python -m pip install pytest-xdist
python -m pip install numba
python -m uv install pytest
python -m uv install pytest-xdist
python -m uv install numba
echo ::endgroup::
echo ::group::Run complete test suite
set -o pipefail
Expand Down

0 comments on commit 9eb8d99

Please sign in to comment.