This repository was archived by the owner on Aug 2, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +12
-6
lines changed
Expand file tree Collapse file tree 4 files changed +12
-6
lines changed Original file line number Diff line number Diff line change 33
44Here you can see the full list of changes between each BioSPPy release.
55
6+ Version 0.2.1
7+ -------------
8+
9+ Released on January 6th 2016
10+
11+ - Fixes incorrect BVP filter parameters (closes #2)
12+
613Version 0.2.0
714-------------
815
Original file line number Diff line number Diff line change 99 :license: BSD 3-clause, see LICENSE for more details.
1010"""
1111
12- version = '0.2.0 '
12+ version = '0.2.1 '
Original file line number Diff line number Diff line change @@ -85,9 +85,9 @@ def __getattr__(cls, name):
8585# built documents.
8686#
8787# The short X.Y version.
88- version = '0.2.0 '
88+ version = '0.2.1 '
8989# The full version, including alpha/beta/rc tags.
90- release = '0.2.0 '
90+ release = '0.2.1 '
9191
9292# The language for content autogenerated by Sphinx. Refer to documentation
9393# for a list of supported languages.
Original file line number Diff line number Diff line change 1313from setuptools import find_packages , setup
1414
1515
16-
1716def read (* paths ):
1817 """Build a file path from *paths and return the contents."""
19-
18+
2019 with open (os .path .join (* paths ), 'r' ) as fid :
2120 return fid .read ()
2221
2322
2423def get_version ():
2524 """Get the module version"""
26-
25+
2726 return biosppy .__version__
2827
2928
You can’t perform that action at this time.
0 commit comments