DaanVanVugt / h5pickle

Wrapper for h5py with pickle capabilities
MIT License
25 stars 8 forks source link

Fix python 2.7 and 3.4 syntax errors #5

Closed djhoese closed 6 years ago

djhoese commented 6 years ago

Fixes #4.

Certain syntax was causing errors when installed on python 2.7 and 3.4. I'm not sure h5pickle can fully support python 2.7 given its use of __getnewargs_ex__ which was added in Python 3.4 (https://www.python.org/dev/peps/pep-3154/#calling-new-with-keyword-arguments).

DaanVanVugt commented 6 years ago

Thanks David!