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.
2 parents 0350cc8 + ab3b978 commit 6bcb209Copy full SHA for 6bcb209
Adafruit_IO/_version.py
@@ -0,0 +1 @@
1
+__version__ = "2.0.15"
setup.py
@@ -13,8 +13,6 @@
13
from os import path
14
import re
15
16
-
17
-# Get the version string from _version.py
18
verstrline = open('Adafruit_IO/_version.py', "rt").read()
19
VSRE = r"^__version__ = ['\"]([^'\"]*)['\"]"
20
mo = re.search(VSRE, verstrline, re.M)
@@ -24,6 +22,7 @@
24
22
raise RuntimeError("Unable to find version string in %s." % (VERSIONFILE,))
25
23
print('version: ', verstr)
26
+
27
# Get the long description from the README file
28
here = path.abspath(path.dirname(__file__))
29
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
0 commit comments