Skip to content

Commit

Permalink
fix: req file changed for build and test
Browse files Browse the repository at this point in the history
  • Loading branch information
iamatulsingh committed Oct 28, 2024
1 parent 39ff3fb commit 9152a42
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down

0 comments on commit 9152a42

Please sign in to comment.