reinhardfechter / FlexPVCModel

1 stars 2 forks source link

Make the code Python 3 compatible #10

Closed alchemyst closed 8 years ago

alchemyst commented 8 years ago

Most of what you are doing is already kind of python 3 compatible. Just use

from __future__ import print_function, division

at the beginning of all your scripts to make it a little easier (I realise lmfit is not Python 3 compatible, but there's no reason for the programs to be stuck in one version).