deep_architect_legacy icon indicating copy to clipboard operation
deep_architect_legacy copied to clipboard

py3 compatibility, typos/small bugs and added setup.py (for pip install)

Open dcferreira opened this issue 6 years ago • 2 comments

dcferreira avatar Aug 18 '17 12:08 dcferreira

Hey python 3 support is awesome. I would recommend switching the xrange stuff to import error approach:

try:
    xrange
except NameError:
    xrange = range

Also, the tutorial notebook is still in python 2.

townie avatar Sep 25 '17 02:09 townie

@townie expect significant updates in about a month or so. We are working on improving the expressive power of the current implementation. The tutorial will significantly change by then. We are working on Python3 support too.

negrinho avatar Sep 30 '17 19:09 negrinho