Skip to content

Commit

Permalink
separate req's for testing suite
Browse files Browse the repository at this point in the history
  • Loading branch information
tomsasani committed Jan 12, 2024
1 parent 24be801 commit 77db1ba
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install flake8 pytest
if [ -f requirements.txt ]; then cat requirements.txt | xargs -L1 pip install --no-cache-dir; fi
if [ -f _requirements.txt ]; then pip install -r _requirements.txt; fi
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
Expand Down
3 changes: 3 additions & 0 deletions _requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
pandas==1.5.3
numba==0.56.4
scipy==1.11.4

0 comments on commit 77db1ba

Please sign in to comment.