Skip to content

Commit c678403

Browse files
committed
Make pyocd dependency optional
1 parent ec87a5c commit c678403

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ def read(fname):
4646
install_requires=[
4747
"PySerial>=3.0",
4848
"requests",
49-
"pyocd==0.14.0",
5049
"intelhex",
5150
"future",
5251
"PrettyTable>=0.7.2",
@@ -58,5 +57,7 @@ def read(fname):
5857
"colorama>=0.3,<0.5",
5958
],
6059
tests_require=["mock>=2", "pytest>=3"],
61-
extras_require={"colorized_logs": ["colorlog"]},
60+
extras_require={
61+
"pyocd": ["pyocd==0.14.0"]
62+
},
6263
)

0 commit comments

Comments
 (0)