Skip to content

Commit

Permalink
remove requirements file
Browse files Browse the repository at this point in the history
  • Loading branch information
cx1111 committed Dec 22, 2017
1 parent 2ff4357 commit 6f14dba
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 13 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ python:

# command to install dependencies
install:
- pip install -r requirements.txt
- pip install .

# command to run tests
Expand Down
6 changes: 0 additions & 6 deletions requirements.txt

This file was deleted.

13 changes: 8 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,6 @@
with open('wfdb/version.py') as f:
__version__ = f.read().split()[-1].strip("'")

# Get the requirements
with open('requirements.txt') as f:
requirements = f.read().splitlines()

setup(
name='wfdb',

Expand Down Expand Up @@ -59,7 +55,14 @@
# your project is installed. For an analysis of "install_requires" vs pip's
# requirements files see:
# https://packaging.python.org/en/latest/requirements.html
install_requires=requirements,
install_requires=[
'nose>=1.3.7',
'numpy>=1.11.0',
'matplotlib>=1.5.1',
'requests>=2.10.0',
'pandas>=0.19.1',
'scipy>=0.19.0',
],

# List additional groups of dependencies here (e.g. development
# dependencies). You can install these using the following syntax,
Expand Down
2 changes: 1 addition & 1 deletion wfdb/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.3.8'
__version__ = '1.3.9'

0 comments on commit 6f14dba

Please # to comment.