Skip to content

Commit b361877

Browse files
committed
Updates package requirements
Updates package requirements to be more supportive of older versions of the package which are still compatible with Python >=3.5.
1 parent 5b7f43e commit b361877

File tree

5 files changed

+52
-41
lines changed

5 files changed

+52
-41
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Development
4040

4141
The development repository is hosted at: https://github.com/MIT-LCP/wfdb-python
4242

43-
The package is to be expanded with physiological signal-processing tools, and general improvements. Development is made for Python 2.7 and 3.5+ only.
43+
The package is to be expanded with physiological signal-processing tools, and general improvements. Development is made for Python 3.5+ only.
4444

4545

4646
Contributing

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Development
1919

2020
The development repository is hosted at: https://github.com/MIT-LCP/wfdb-python
2121

22-
The package is to be expanded with physiological signal-processing tools, and general improvements. Development is made for Python 2.7 and 3.5+ only.
22+
The package is to be expanded with physiological signal-processing tools, and general improvements. Development is made for Python 3.5+ only.
2323

2424

2525
API Reference

requirements.txt

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
certifi==2020.4.5.1
2-
chardet==3.0.4
3-
cycler==0.10.0
4-
idna==2.9
5-
joblib>=0.14.1
1+
certifi>=2016.8.2
2+
chardet>=3.0.0
3+
cycler>=0.10.0
4+
idna>=2.2
5+
joblib>=0.11
66
kiwisolver>=1.1.0
7-
matplotlib>=3.0.0
8-
mne==0.20.5
9-
nose==1.3.7
10-
numpy==1.18.5
7+
matplotlib>=2.0.0
8+
mne>=0.18.0
9+
nose>=1.3.7
10+
numpy>=1.10.1
1111
pandas>=0.17.0
12-
pyparsing==2.4.7
13-
python-dateutil==2.8.1
14-
pytz==2020.1
15-
requests==2.23.0
16-
scikit-learn>=0.22
17-
scipy==1.4.1
18-
six==1.15.0
19-
sklearn==0.0
20-
threadpoolctl==2.1.0
21-
urllib3==1.25.9
12+
pyparsing>=2.0.4
13+
python-dateutil>=2.4.2
14+
pytz>=2018.3
15+
requests>=2.8.1
16+
scikit-learn>=0.18
17+
scipy>=0.17.0
18+
six>=0.9.0
19+
sklearn>=0.0
20+
threadpoolctl>=1.0.0
21+
urllib3>=1.22

setup.py

Lines changed: 30 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -56,27 +56,27 @@
5656
# requirements files see:
5757
# https://packaging.python.org/en/latest/requirements.html
5858
install_requires=[
59-
'certifi==2020.4.5.1',
60-
'chardet==3.0.4',
61-
'cycler==0.10.0',
62-
'idna==2.9',
63-
'joblib>=0.14.1',
59+
'certifi>=2016.8.2',
60+
'chardet>=3.0.0',
61+
'cycler>=0.10.0',
62+
'idna>=2.2',
63+
'joblib>=0.11',
6464
'kiwisolver>=1.1.0',
65-
'matplotlib>=3.0.0',
66-
'mne==0.20.5',
67-
'nose==1.3.7',
68-
'numpy==1.18.5',
65+
'matplotlib>=2.0.0',
66+
'mne>=0.18.0',
67+
'nose>=1.3.7',
68+
'numpy>=1.10.1',
6969
'pandas>=0.17.0',
70-
'pyparsing==2.4.7',
71-
'python-dateutil==2.8.1',
72-
'pytz==2020.1',
73-
'requests==2.23.0',
74-
'scikit-learn>=0.22',
75-
'scipy==1.4.1',
76-
'six==1.15.0',
77-
'sklearn==0.0',
78-
'threadpoolctl==2.1.0',
79-
'urllib3==1.25.9'
70+
'pyparsing>=2.0.4',
71+
'python-dateutil>=2.4.2',
72+
'pytz>=2018.3',
73+
'requests>=2.8.1',
74+
'scikit-learn>=0.18',
75+
'scipy>=0.17.0',
76+
'six>=0.9.0',
77+
'sklearn>=0.0',
78+
'threadpoolctl>=1.0.0',
79+
'urllib3>=1.22'
8080
],
8181

8282
# List additional groups of dependencies here (e.g. development
@@ -109,4 +109,15 @@
109109
# 'sample=sample:main',
110110
# ],
111111
# },
112+
113+
# Add ways to quickly filter project
114+
classifiers=[
115+
"Programming Language :: Python",
116+
"Programming Language :: Python :: 3",
117+
"Programming Language :: Python :: 3.5",
118+
"Programming Language :: Python :: 3.6",
119+
"Programming Language :: Python :: 3.7",
120+
"Programming Language :: Python :: 3.8",
121+
"License :: OSI Approved :: MIT License"
122+
],
112123
)

wfdb/version.py

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

0 commit comments

Comments
 (0)