os.errno removed in Python3.7
kellrott opened this issue · 1 comments
kellrott commented
In Python3.7 os.errno
is removed. To make synapseclient library compatible,
add import errno
to client.py
and change line https://github.com/Sage-Bionetworks/synapsePythonClient/blob/master/synapseclient/client.py#L1856 to
if exception.errno != errno.EEXIST:
kimyen commented
Thanks @kellrott !
We are currently not supporting Python version 3.7. But we plan to: https://sagebionetworks.jira.com/browse/SYNPY-802