Skip to content
Snippets Groups Projects
Commit a4aa9c82 authored by Pietro Incardona's avatar Pietro Incardona
Browse files

Better installation for python-devel

parent 0a935839
No related branches found
No related tags found
No related merge requests found
# Change Log
All notable changes to this project will be documented in this file.
## [0.9.0]
## [development]
### Added
- Introduced getDomainIterator for Cell-list
......@@ -17,6 +17,7 @@ All notable changes to this project will be documented in this file.
- getDomainIterator stencil for faster stencil codes iterators see (Grid/gray_scott_3d example)
- Algebraic multigrid solvers interface for linear systems (see Vortex in Cell example)
- Added setPropNames in vector_dist see Vector/0_simple
- Support for Windows with CYGWIN
### Fixed
- Installation of PETSC in case with MUMPS try without MUMPS
......
......@@ -318,6 +318,8 @@ typedef vector_dist<3,double,aggregate<int, int,double, double, double,
// | at n-1 density at n - 1
// |
// Number of neighborhood
//! Model for Dynamic load balancing
struct ModelCustom
{
template<typename Decomposition, typename vector> inline void addComputation(Decomposition & dec, vector & vd, size_t v, size_t p)
......@@ -339,7 +341,7 @@ struct ModelCustom
}
};
//! Second model for dynamic load balancing
struct ModelCustom2
{
template<typename Decomposition, typename vector> inline void addComputation(Decomposition & dec, vector & vd, size_t v, size_t p)
......
......@@ -38,7 +38,7 @@ PROJECT_NAME = "OpenFPM_pdata"
# could be handy for archiving the generated documentation or if some version
# control system is used.
PROJECT_NUMBER = 0.9.0
PROJECT_NUMBER = 1.0.0
# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
......
......@@ -61,6 +61,11 @@ if [ x"$platform" = x"linux" -a x"$pcman" = x"yum" ]; then
ret1=$?
rpm -V python-devel
ret2=$?
if [ $ret2 -ne 0 ]; then
echo "Cheking python2-devel"
rpm -V python2-devel
ret2=$?
fi
rpm -V libxml2-devel
ret3=$?
rpm -V libxslt-devel
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment