Closed andersonvom closed 5 years ago
In python2, we can put the expressions to be printed in parentheses to make print look like a function call, which is how it's used in python3. So surrounding these expressions in parentheses make setup.py compatible to both versions of python.
print
setup.py
This fixes issue #34
Looks like a straight forward fix. It would be nice to get merged..
@dutzi Can this PR be merged?
Sure, thanks for the PR!
In python2, we can put the expressions to be printed in parentheses to make
print
look like a function call, which is how it's used in python3. So surrounding these expressions in parentheses makesetup.py
compatible to both versions of python.This fixes issue #34