Skip to content

Commit

Permalink
Fix deps installation
Browse files Browse the repository at this point in the history
  • Loading branch information
LeonardSchmiester committed Sep 19, 2024
1 parent db620ec commit 5d4e97b
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,17 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install numpy pandas scipy tqdm
pip install -r requirements.txt
pip install .[dev]
- name: Run tests with coverage
run: |
Expand Down

0 comments on commit 5d4e97b

Please sign in to comment.