Jason K. Moore

Results 1406 comments of Jason K. Moore

I also got this error when trying to render a tuple of two dyadics in notebook 4: ![selection_018](https://cloud.githubusercontent.com/assets/276007/16716969/74212f9c-46c0-11e6-9a18-8997cde048e0.jpg) ``` --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) /home/moorepants/miniconda3/lib/python3.5/site-packages/IPython/core/formatters.py in __call__(self, obj)...

@jbm950 I am not able to recreate the errors you are getting in notebooks 3 and 5. What line are you typing?

Looks like our `setup.py` might not be Python 3 compatible.

`setup.py` runs fine in the latest CI builds with Python 3.6: https://travis-ci.org/pydy/pydy/jobs/479119452 I'll have to check manually.

These run without error for me in Py 3.6: ``` Python 3.6.7 | packaged by conda-forge | (default, Nov 21 2018, 02:32:25) Type 'copyright', 'credits' or 'license' for more information...

Can you report which version of pip you are using?

You could download with wget and then install with `python setup.py install` to see if that works.

Can you patch the setup.py file with: ``` long_description=open('README.rst', encoding='utf-8').read(), ```` and see if that works?

Maybe we should use this: https://github.com/bjodah/pycompilation It compiles code and caches it for later use.