v0.3
This release adds compatibility with IPython/Jupyter >= 4.0.
Simultaneously supporting IPython 3 and 4 is somewhat tricky, since many of the sub-packages of IPython 3 were broken out into new repositories as part of the transition to the 4.x series. For this reason, pip install pgcontents
no longer installs any version of IPython or Jupyter. Instead, separate extras
sets are provided for the 3.x and 4.x series.
To install pgcontents in a manner compatible with the latest Jupyter packages, run:
pip install pgcontents[ipy4]
To install pgcontents with the legacy IPython 3.x series, run:
pip install pgcontents[ipy3]
Simply installing pgcontents
without an extras set will complete successfully, but will trigger an error on any attempt to import the pgcontents
module.