From ca2e3645bc8a4402b3e305ebbdbc40cc25adf30d Mon Sep 17 00:00:00 2001 From: Jannis Konrad <kabel42@gmail.com> Date: Fri, 15 Sep 2017 10:44:25 +0200 Subject: [PATCH] fix mixed " and ' --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 36148f1..336ed76 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ class prepare_tinydtls(build_ext): def run(self): def run_command(args): print("Running:", " ".join(args)) - subprocess.check_call(args, cwd=os.path.join(os.path.dirname(__file__), "DTLSSocket','tinydtls")) + subprocess.check_call(args, cwd=os.path.join(os.path.dirname(__file__), "DTLSSocket","tinydtls")) commands = [ ["autoconf"], ["autoheader"], @@ -40,7 +40,7 @@ cy_build = cythonize([ setup( name="DTLSSocket", - version='0.1.0', + version='0.1.1', description = "DTLSSocket is a cython wrapper for tinydtls with a Socket like interface", author = "Jannis Konrad", author_email= "Jannis.Konrad@h-brs.de", -- GitLab