v0.9.1 - removed additional config files, fixed missing import of glob in dependency.py
This commit is contained in:
parent
9bd62c783d
commit
d3e03daded
|
@ -1,10 +0,0 @@
|
||||||
{
|
|
||||||
"name" : "netcdf-c",
|
|
||||||
"default version" : "4.7.4",
|
|
||||||
"dependencies" : "zlib,szip,curl,hdf5",
|
|
||||||
"download" : "git clone --depth 1 --branch v$VERSION https://github.com/Unidata/netcdf-c.git netcdf-c-$VERSION",
|
|
||||||
"configure" : "./configure --prefix=$PREFIX CPPFLAGS=-I$PREFIX/include LDFLAGS=-L$PREFIX/lib $SHARED",
|
|
||||||
"build" : "make -j $BUILDTHREADS",
|
|
||||||
"install" : "make install",
|
|
||||||
"object files" : "435"
|
|
||||||
}
|
|
|
@ -1,10 +0,0 @@
|
||||||
{
|
|
||||||
"name" : "netcdf-f",
|
|
||||||
"default version" : "4.5.3",
|
|
||||||
"dependencies" : "zlib,szip,hdf5,curl,netcdf-c",
|
|
||||||
"download" : "git clone --depth 1 --branch v$VERSION https://github.com/Unidata/netcdf-fortran.git netcdf-f-$VERSION",
|
|
||||||
"configure" : "./configure --prefix=$PREFIX CPPFLAGS=-I$PREFIX/include LDFLAGS=-L$PREFIX/lib $SHARED",
|
|
||||||
"build" : "make -j $BUILDTHREADS",
|
|
||||||
"install" : "make install",
|
|
||||||
"object files" : "60"
|
|
||||||
}
|
|
|
@ -1,4 +1,5 @@
|
||||||
import os
|
import os
|
||||||
|
import glob
|
||||||
from lib.io import load_lib_data
|
from lib.io import load_lib_data
|
||||||
|
|
||||||
def topological_sort(source):
|
def topological_sort(source):
|
||||||
|
|
Loading…
Reference in New Issue