Skip to content

Commit 6f14dba

Browse files
committed
remove requirements file
1 parent 2ff4357 commit 6f14dba

File tree

4 files changed

+9
-13
lines changed

4 files changed

+9
-13
lines changed

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ python:
2525

2626
# command to install dependencies
2727
install:
28-
- pip install -r requirements.txt
2928
- pip install .
3029

3130
# command to run tests

requirements.txt

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

setup.py

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,6 @@
1818
with open('wfdb/version.py') as f:
1919
__version__ = f.read().split()[-1].strip("'")
2020

21-
# Get the requirements
22-
with open('requirements.txt') as f:
23-
requirements = f.read().splitlines()
24-
2521
setup(
2622
name='wfdb',
2723

@@ -59,7 +55,14 @@
5955
# your project is installed. For an analysis of "install_requires" vs pip's
6056
# requirements files see:
6157
# https://packaging.python.org/en/latest/requirements.html
62-
install_requires=requirements,
58+
install_requires=[
59+
'nose>=1.3.7',
60+
'numpy>=1.11.0',
61+
'matplotlib>=1.5.1',
62+
'requests>=2.10.0',
63+
'pandas>=0.19.1',
64+
'scipy>=0.19.0',
65+
],
6366

6467
# List additional groups of dependencies here (e.g. development
6568
# dependencies). You can install these using the following syntax,

wfdb/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '1.3.8'
1+
__version__ = '1.3.9'

0 commit comments

Comments
 (0)