fixeria has submitted this change. ( https://gerrit.osmocom.org/c/pysim/+/33070 )
Change subject: setup.py: fix syntax errors (missing commas) ......................................................................
setup.py: fix syntax errors (missing commas)
Change-Id: Ia53a659ad9652d582e2bf4a039a3e18631435072 Fixes: 2b15e315 "setup: add missing pyyaml to setup.py and README.md" Fixes: 93aac3ab "pySim-shell: fix compatibility problem with cmd2 >= 2.0.0 (Settable)" --- M setup.py 1 file changed, 14 insertions(+), 3 deletions(-)
Approvals: Jenkins Builder: Verified pespin: Looks good to me, but someone else must approve osmith: Looks good to me, approved
diff --git a/setup.py b/setup.py index 4b39c63..d14ebc6 100644 --- a/setup.py +++ b/setup.py @@ -17,11 +17,11 @@ "construct >= 2.9.51", "bidict", "gsm0338", - "pyyaml >= 5.1" + "pyyaml >= 5.1", "termcolor", "colorlog", - "pycryptodome" - "packaging" + "pycryptodome", + "packaging", ], scripts=[ 'pySim-prog.py',