Merge branch 'poetry-cleanup' of gitlab.lip6.fr:vlsi-eda/coriolis into devel
This commit is contained in:
commit
94323f28e0
|
@ -1,5 +1,6 @@
|
||||||
|
|
||||||
install( FILES __init__.py DESTINATION ${Python_CORIOLISLIB} )
|
install( FILES __init__.py DESTINATION ${Python_CORIOLISLIB} )
|
||||||
|
|
||||||
install( FILES helpers/__init__.py DESTINATION ${Python_CORIOLISLIB}/helpers )
|
install( FILES helpers/__init__.py DESTINATION ${Python_CORIOLISLIB}/helpers )
|
||||||
install( FILES helpers/io.py DESTINATION ${Python_CORIOLISLIB}/helpers )
|
install( FILES helpers/io.py DESTINATION ${Python_CORIOLISLIB}/helpers )
|
||||||
install( FILES helpers/utils.py DESTINATION ${Python_CORIOLISLIB}/helpers )
|
install( FILES helpers/utils.py DESTINATION ${Python_CORIOLISLIB}/helpers )
|
||||||
|
|
|
@ -5,13 +5,13 @@ try:
|
||||||
import sys
|
import sys
|
||||||
import os.path
|
import os.path
|
||||||
import optparse
|
import optparse
|
||||||
from coriolis import Cfg
|
from coriolis import Cfg
|
||||||
from coriolis import Hurricane
|
from coriolis import Hurricane
|
||||||
from coriolis import Viewer
|
from coriolis import Viewer
|
||||||
from coriolis import helpers.io
|
from coriolis import helpers.io
|
||||||
from coriolis import CRL
|
from coriolis import CRL
|
||||||
from coriolis import Unicorn
|
from coriolis import Unicorn
|
||||||
from coriolis import Tutorial
|
from coriolis import Tutorial
|
||||||
except ImportError as e:
|
except ImportError as e:
|
||||||
serror = str(e)
|
serror = str(e)
|
||||||
if serror.startswith('No module named'):
|
if serror.startswith('No module named'):
|
||||||
|
|
Loading…
Reference in New Issue