Skip to content

Commit

Permalink
add install dependencies to fix p2.7 CI
Browse files Browse the repository at this point in the history
  • Loading branch information
paulvangentcom committed Apr 7, 2020
1 parent 527fcc7 commit b58ba36
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
language: python

python:
- "2.7"
- "3.5"
- "3.6"
- "3.7"
Expand Down
7 changes: 5 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,19 @@
url="https://github.com/paulvangentcom/heartrate_analysis_python",
packages=["heartpy"],
install_requires=[
"cycler==0.10.0;python_version<='3.5'",
"kiwisolver==1.1.0;python_version<='3.5'",
"pyparsing==2.4.7;python_version=='2.7'",
"numpy<=1.15;python_version=='2.7'",
"numpy<=1.15;python_version=='3.4'",
"numpy;python_version>='3.5'",
"scipy<=1.1.0;python_version=='2.7'",
"scipy<=1.2.0;python_version=='3.4'",
"scipy;python_version>='3.5'",
"matplotlib<=2.2.3;python_version=='2.7'",
"matplotlib==2.2.3;python_version=='2.7'",
"matplotlib<=2.2.3;python_version=='3.4'",
"matplotlib<=3.0.0;python_version=='3.5'",
'matplotlib;python_version>="3.6"'],
"matplotlib;python_version>='3.6'"],
include_package_data=True,
package_data={
'': ['data/*.csv', 'data/*.mat', 'data/*.log']
Expand Down

0 comments on commit b58ba36

Please sign in to comment.