We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 170029f commit 2ff4357Copy full SHA for 2ff4357
setup.py
@@ -15,7 +15,8 @@
15
long_description = f.read()
16
17
# Get the version number from the version.py file
18
-from wfdb.version import __version__
+with open('wfdb/version.py') as f:
19
+ __version__ = f.read().split()[-1].strip("'")
20
21
# Get the requirements
22
with open('requirements.txt') as f:
wfdb/version.py
@@ -1 +1 @@
1
-__version__ = '1.3.7'
+__version__ = '1.3.8'
0 commit comments