From b0c06a97fd426c69d238e670d368daa148019632 Mon Sep 17 00:00:00 2001 From: Sefik Ilkin Serengil Date: Sat, 23 Dec 2023 11:12:08 +0000 Subject: [PATCH] enfore dependencies --- .github/workflows/tests.yml | 2 +- tests/global-unit-test.py | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 65d670b..5a5350b 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -34,7 +34,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install pytest + pip install pandas==1.3.5 numpy==1.22.3 tqdm==4.62.3 psutil==5.9.0 pip install . - name: Test with pytest diff --git a/tests/global-unit-test.py b/tests/global-unit-test.py index defa3a0..a519828 100644 --- a/tests/global-unit-test.py +++ b/tests/global-unit-test.py @@ -25,7 +25,6 @@ logger.info("no config passed") df = pd.read_csv("dataset/golf.txt") - logger.info(df.head()) model = cb.fit(df) gc.collect()