From 77db1ba917c84c15477d41db52c907cef78a3802 Mon Sep 17 00:00:00 2001 From: Tom Sasani Date: Fri, 12 Jan 2024 14:57:07 -0500 Subject: [PATCH] separate req's for testing suite --- .github/workflows/tests.yaml | 2 +- _requirements.txt | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 _requirements.txt diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 0f7071a..8ce862c 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -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 diff --git a/_requirements.txt b/_requirements.txt new file mode 100644 index 0000000..2103035 --- /dev/null +++ b/_requirements.txt @@ -0,0 +1,3 @@ +pandas==1.5.3 +numba==0.56.4 +scipy==1.11.4 \ No newline at end of file