Skip to content

Commit

Permalink
cleaned up lean mode build and test suite
Browse files Browse the repository at this point in the history
fix #1575
  • Loading branch information
doutriaux1 committed Sep 30, 2015
1 parent 914d252 commit c32dc38
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Lib/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
"""
genutil -- General utility modules for scientific computing
"""
## Lean mode does not install xmgrace module
from grower import grower
import xmgrace
try:
import xmgrace
except:
pass
import statistics
from minmax import minmax
from statusbar import statusbar
Expand All @@ -14,7 +18,6 @@
from unidata import udunits
from Filler import Filler,StringConstructor
from averager import averager, AveragerError, area_weights, getAxisWeight, getAxisWeightByName,__check_weightoptions
#from Statusbar_Pmw import Statusbar
import cdat_info
from ASCII import get_parenthesis_content
cdat_info.pingPCMDIdb("cdat","genutil")
Expand Down

0 comments on commit c32dc38

Please sign in to comment.