From 9152a42658740b0511adbc04687d6c6f5465a989 Mon Sep 17 00:00:00 2001 From: iamatulsingh Date: Mon, 28 Oct 2024 15:37:39 +0100 Subject: [PATCH] fix: req file changed for build and test --- .github/workflows/pytest.yml | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 0cdf177..51bce78 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -21,7 +21,7 @@ jobs: - name: Install required libraries run: | - pip install -r requirements-dev.txt + pip install -r requirements.txt - name: Run test suite run: | diff --git a/setup.py b/setup.py index 2334857..0ab5663 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ with open("README.md", "r", encoding="utf-8") as fh: long_description = fh.read() -with open("requirements.txt", "r") as req: +with open("requirements-dev.txt", "r") as req: reqs = req.read().split("\n") setuptools.setup(