Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: sklam/py2nb
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: cricboy007/py2nb
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Able to merge. These branches can be automatically merged.
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Jul 26, 2018

  1. The IPython.nbformat package has been deprecated since IPython 4.0.…

    … Import from nbformat instead.
    
    The `IPython.nbformat` package has been deprecated since IPython 4.0. Import from nbformat instead.
    cricboy007 committed Jul 26, 2018

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    64421ac View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 py2nb/converter.py
4 changes: 2 additions & 2 deletions py2nb/converter.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from __future__ import absolute_import, division, print_function

from IPython.nbformat.v3 import nbpy
from IPython import nbformat as nbf
from nbformat.v3 import nbpy
import nbformat as nbf

from io import StringIO