Skip to content

Commit

Permalink
use python3 to compile the interface
Browse files Browse the repository at this point in the history
  • Loading branch information
AWehrhahn committed Dec 13, 2021
1 parent 6a9cbeb commit df81f63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pysme/smelib/libtools.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def compile_interface():
libdir = join(dirname(__file__))
cwd = os.getcwd()
os.chdir(libdir)
subprocess.run(["python", "setup.py", "build_ext", "--inplace"])
subprocess.run(["python3", "setup.py", "build_ext", "--inplace"])
os.chdir(cwd)


Expand Down

0 comments on commit df81f63

Please sign in to comment.