Skip to content

Commit d0059c7

Browse files
bridadanRomanSaveljev
authored andcommitted
Pin python dependencies to an API version, remove pyocd dependency (#158)
* Pin python dependencies to an API version * Remove pyocd dependency. Wherever pyocd is used, the imports are wrapped in try/except blocks and an error code returned. It seems as though it is already and optional dependency, so I'm removing the hard requirement.
1 parent 39d27a4 commit d0059c7

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,8 @@ def read(fname):
5454
},
5555
install_requires=[
5656
"mbed-ls>=1.5.1,==1.*",
57-
"six",
58-
"pyserial",
59-
"pyOCD!=0.13.0"
57+
"six==1.*",
58+
"pyserial==3.*"
6059
],
6160
classifiers=[
6261
"Development Status :: 5 - Production/Stable",

0 commit comments

Comments
 (0)