File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 33
33
# Default paths to Mercurial and Git
34
34
hg_cmd = 'hg'
35
35
git_cmd = 'git'
36
- ver = '0.5.1 '
36
+ ver = '0.5.2 '
37
37
38
38
ignores = [
39
39
# Version control folders
@@ -1145,7 +1145,7 @@ def post_action(self):
1145
1145
fname = 'requirements.txt'
1146
1146
try :
1147
1147
import pip
1148
- installed_packages = [package .project_name for package in pip .get_installed_distributions ()]
1148
+ installed_packages = [package .project_name . lower () for package in pip .get_installed_distributions ()]
1149
1149
with open (os .path .join (mbed_os_path , fname ), 'r' ) as f :
1150
1150
for line in f .read ().splitlines ():
1151
1151
pkg = re .sub (r'^([\w-]+).*$' , r'\1' , line ).lower ()
@@ -1158,6 +1158,7 @@ def post_action(self):
1158
1158
1159
1159
if len (missing ):
1160
1160
warning (
1161
+ "-------------------------------------------------------------------------------\n "
1161
1162
"The mbed build tools in this program require Python modules that are not installed.\n "
1162
1163
"This might prevent you from compiling your code or exporting to IDEs and other toolchains.\n "
1163
1164
"The missing Python modules are: %s\n "
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ def read(fname):
19
19
setup (
20
20
name = "mbed-cli" ,
21
21
packages = ["mbed" ],
22
- version = "0.5.1 " ,
22
+ version = "0.5.2 " ,
23
23
url = 'http://github.com/ARMmbed/mbed-cli' ,
24
24
author = 'ARM mbed' ,
25
25
You can’t perform that action at this time.
0 commit comments