openturns: '1.17'
ospray : '2.4.0'
packaging : 'native'
+ # pandas : '1.13.1'
ParaView : '5.9.0'
petsc : {tag : '3.15.0', section: 'version_3_15_0'}
Pillow : 'native'
sphinxintl: 'native'
sphinx_rtd_theme : 'native'
StaticMeshPlugin: '5.8.0'
+ statsmodels : 'native'
swig : 'native'
salome_system : 'native'
tbb : 'native'
cppunit : '1.13.2'
cycler : '0.10.0'
Cython : '0.25.2'
- dateutil : '2.4.2'
+ dateutil : '2.6.1'
docutils : '0.12'
doxygen : '1.8.14'
eigen : '3.3.4'
openVKL: '0.11.0'
ospray : '2.4.0'
packaging : '17.1'
+ pandas : '0.25.2'
+ patsy : '0.5.2'
ParaView : '5.9.0'
petsc : {tag : '3.15.0', section: 'version_3_15_0'}
Pillow : '7.1.1'
#PyQtChart : '5.9'
pyreadline : '2.0'
Python : '3.6.5'
- pytz : '2015.7'
+ pytz : '2017.2'
qt : '5.12.10'
qwt : '6.1.2'
requests : '2.19.1'
sphinx_rtd_theme : '0.4.3'
sphinxintl: '0.9.10'
StaticMeshPlugin: '5.8.0'
+ statsmodels: '0.8.0'
swig : '3.0.12'
tbb : '2019_U8'
tcl : '8.6.0'
done
declare -A OTP
OTP["otfmi"]="0.11"
- #OTP["otpod"]="0.6.7"
+ OTP["otpod"]="0.6.7"
OTP["otwrapy"]="0.10"
for k in ${!OTP[@]};
do
compil_script : "openturns-1.17" + $VARS.scriptExtension
patches : ['openturns-1.17.0001.patch']
depend : ['Python', 'lapack', 'hdf5', 'tbb', 'nlopt', 'libxml2', 'eigen', 'matplotlib', 'cminpack', 'FMILibrary', 'PyFMI']
+ opt_depends : ['pandas', 'statsmodels']
}
version_1_17_win :
--- /dev/null
+default :
+{
+ name : "patsy"
+ build_source : "script"
+ compil_script : "pip_install" + $VARS.scriptExtension
+ get_source : "archive"
+ system_info :
+ {
+ rpm : []
+ rpm_dev : []
+ apt : []
+ apt_dev : []
+ }
+ environ :
+ {
+
+ }
+ depend : ["Python", "setuptools"]
+ opt_depend : ['pandas']
+ source_dir : $APPLICATION.workdir + $VARS.sep + 'SOURCES' + $VARS.sep + $name
+ build_dir : $APPLICATION.workdir + $VARS.sep + 'BUILD' + $VARS.sep + $name
+ install_dir : 'base'
+ properties:
+ {
+ incremental : "yes"
+ pip : "yes"
+ }
+}
--- /dev/null
+default :
+{
+ name : "statsmodels"
+ build_source : "script"
+ compil_script : "pip_install" + $VARS.scriptExtension
+ get_source : "archive"
+ system_info :
+ {
+ rpm : ['python3-statsmodels']
+ rpm_dev : ['python3-statsmodels']
+ apt : ['python3-statsmodels']
+ apt_dev : ['python3-statsmodels']
+ }
+ environ :
+ {
+
+ }
+ depend : ["Python", "setuptools","PyFMI"]
+ opt_depend : ['pandas', 'patsy']
+ source_dir : $APPLICATION.workdir + $VARS.sep + 'SOURCES' + $VARS.sep + $name
+ build_dir : $APPLICATION.workdir + $VARS.sep + 'BUILD' + $VARS.sep + $name
+ install_dir : 'base'
+ properties:
+ {
+ incremental : "yes"
+ pip : "yes"
+ }
+}