Opened 9 years ago
Closed 6 years ago
#51167 closed defect (fixed)
py35-nbconvert @4.2.0_0 always breaks due to missing entrypoints dependency
Reported by: | wichert@… | Owned by: | stromnov (Andrey Stromnov) |
---|---|---|---|
Priority: | Normal | Milestone: | |
Component: | ports | Version: | 2.3.4 |
Keywords: | Cc: | kurthindenburg (Kurt Hindenburg) | |
Port: | py-nbconvert |
Description
The current nbconvert ports are unusable. Trying to run nbconvert gives this error:
Traceback (most recent call last): File "/opt/local/bin/jupyter-nbconvert-2.7", line 3, in <module> from nbconvert.nbconvertapp import main File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/nbconvert/__init__.py", line 4, in <module> from .exporters import * File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/nbconvert/exporters/__init__.py", line 1, in <module> from .export import * File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/nbconvert/exporters/export.py", line 9, in <module> import entrypoints ImportError: No module named entrypoints
entrypoints is a new dependency for nbconvert, but currently not part of macports.
Change History (3)
comment:1 Changed 9 years ago by mf2k (Frank Schima)
Cc: | stromnov@… removed |
---|---|
Owner: | changed from macports-tickets@… to stromnov@… |
Port: | py-nbconvert added; py27-nbconvert py35-nbconvert removed |
comment:2 Changed 9 years ago by dsavransky (Dmitry Savransky)
comment:3 Changed 6 years ago by kurthindenburg (Kurt Hindenburg)
Cc: | kurthindenburg added |
---|---|
Resolution: | → fixed |
Status: | new → closed |
This appears fixed
Note: See
TracTickets for help on using
tickets.
entrypoints has been added, but does not work with python2.7 because it also requires configparser-3.3 to backport python3 configparser functionality. Installing configparser via pip fixes for now, but configparser should have its own port.
Thanks!
Replying to wichert@…: