You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
But the encoding argument was only added to popen in python 3.6 (see: https://docs.python.org/3.6/library/subprocess.html). I'm not sure if just changing the if to sys.version_info.major == 3 and sys.version_info.minor > 6 will fix the problem.
The text was updated successfully, but these errors were encountered:
Trying to
import pixiedust_node
fails in Python 3.5, with the following error:In the code, the
encoding
argument is passed topopen
if the Python version is 3 or greater:But the
encoding
argument was only added topopen
in python 3.6 (see: https://docs.python.org/3.6/library/subprocess.html). I'm not sure if just changing theif
tosys.version_info.major == 3 and sys.version_info.minor > 6
will fix the problem.The text was updated successfully, but these errors were encountered: