Skip to content

Commit

Permalink
Install Python packages before testing on Win
Browse files Browse the repository at this point in the history
  • Loading branch information
AnHeuermann committed Mar 5, 2024
1 parent b911780 commit 9035ca4
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,12 @@ jobs:

- name: Update pip
run: |
pip install --upgrade pip
python -m pip install --upgrade pip
- name: Install Python packages (Windows only)
if: ${{ matrix.os }} == 'windows-latest'
run: |
pip install --user datetime matplotlib monotonic natsort joblib ompython simplejson psutil
- name: Cache pip dependencies
uses: actions/cache@v4
Expand Down

0 comments on commit 9035ca4

Please sign in to comment.