VU-Cog-Sci / nideconv

fit response shapes from signal time-courses
MIT License
12 stars 11 forks source link

Make Python3 proof #13

Closed lukassnoek closed 4 years ago

lukassnoek commented 5 years ago

Removed references to unicode (Python2 syntax) as it breaks Python3 scripts. Alternatively, to make it python2 compatible (but why would you?), you could add something like the following to the start of regressors.py:

import sys
if sys.version_info[0] >= 3:
    unicode = str
Gilles86 commented 4 years ago

This has been solved in a refactor now.