cmake configure doesn't look for python-ply
Bug #1037311 reported by
Patrick Farrell
This bug affects 2 people
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
DOLFIN |
Fix Released
|
Medium
|
Johannes Ring |
Bug Description
I checked out the trunk and built it just fine. However, when I try to import dolfin I get
/home/pef/
49 """
50
---> 51 import ply.lex as lex
52 import os
53 import sys
ImportError: No module named ply.lex
It appears a dependency has been added on the python-ply package, but cmake hasn't been configured to demand it.
(Installing python-ply fixes the proximate problem.)
Related branches
Changed in dolfin: | |
status: | New → Confirmed |
importance: | Undecided → High |
assignee: | nobody → Johannes Ring (johannr) |
milestone: | none → 1.1.0 |
status: | Confirmed → In Progress |
Changed in dolfin: | |
status: | Fix Committed → Fix Released |
To post a comment you must log in.
Actually, I'm not sure we should add a check for PLY in the build system since it is only a runtime dependency. AFAIK, we do not have such a check for other runtime dependencies like FFC and UFL. Opinions?