Skip to content

Commit de7d3c8

Browse files
author
Benjamin Moody
committed
Remove requirements.txt.
Having the file 'requirements.txt' implies that there is a particular set of external package versions that are recommended, if not required. That's not true; all of the packages that wfdb-python requires are quite stable and any vaguely recent version will do, and you should generally be using the most up-to-date version that is compatible with your application requirements. Moreover, there's no specific set of external package version numbers that works across all platforms we might want to test. Therefore, remove the file requirements.txt, and for purposes of *testing*, use whatever pip selects by default.
1 parent 6cf52fb commit de7d3c8

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

.github/workflows/run-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Install dependencies
2929
run: |
3030
python -m pip install --upgrade pip
31-
pip install -r requirements.txt
31+
pip install .
3232
- name: Run nosetests
3333
run: |
3434
nosetests

requirements.txt

Lines changed: 0 additions & 6 deletions
This file was deleted.

0 commit comments

Comments
 (0)