Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upWill there be Python 2 support? #25
Comments
|
A lot of the code depends on new machinery introduced in Python 3.4, so at On Fri, Nov 18, 2016 at 10:59 PM, yangnw notifications@github.com wrote:
Yuvi Panda T |
|
It's a finance project. Since it is not so big, the feature itself is not that important. |
In non-interactive python 2, we can use
from __future__ import absolute_importto force explicit relative import. This is not working when, for example, we write some vanilla python files and relative-importing them from a notebook.I tried
pip install git+https://github.com/ipython/ipynbbut it gives that it requires python 3. Is there any workaround about this?