Skip to content

Commit b58ba36

Browse files
add install dependencies to fix p2.7 CI
1 parent 527fcc7 commit b58ba36

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.travis.yml

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
language: python
22

33
python:
4+
- "2.7"
45
- "3.5"
56
- "3.6"
67
- "3.7"

setup.py

+5-2
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,19 @@
1414
url="https://github.com/paulvangentcom/heartrate_analysis_python",
1515
packages=["heartpy"],
1616
install_requires=[
17+
"cycler==0.10.0;python_version<='3.5'",
18+
"kiwisolver==1.1.0;python_version<='3.5'",
19+
"pyparsing==2.4.7;python_version=='2.7'",
1720
"numpy<=1.15;python_version=='2.7'",
1821
"numpy<=1.15;python_version=='3.4'",
1922
"numpy;python_version>='3.5'",
2023
"scipy<=1.1.0;python_version=='2.7'",
2124
"scipy<=1.2.0;python_version=='3.4'",
2225
"scipy;python_version>='3.5'",
23-
"matplotlib<=2.2.3;python_version=='2.7'",
26+
"matplotlib==2.2.3;python_version=='2.7'",
2427
"matplotlib<=2.2.3;python_version=='3.4'",
2528
"matplotlib<=3.0.0;python_version=='3.5'",
26-
'matplotlib;python_version>="3.6"'],
29+
"matplotlib;python_version>='3.6'"],
2730
include_package_data=True,
2831
package_data={
2932
'': ['data/*.csv', 'data/*.mat', 'data/*.log']

0 commit comments

Comments
 (0)