From 527fa2939f3c36fc95c4136528ee8ec682dc3ce2 Mon Sep 17 00:00:00 2001 From: Rafael Hautekiet Date: Sun, 12 Aug 2018 21:06:04 +0200 Subject: [PATCH] properly install gtk2 development library --- setup.py | 2 +- travis/build-openctm.sh | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 33186a3..b91b0e0 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ setup( name='python-openctm', - version='0.0.0', + version='1.0.0', description='Python Interface for the OpenCTM Library', long_description='Python Interface for the OpenCTM Library', url='https://github.com/lejafar/python-openctm', diff --git a/travis/build-openctm.sh b/travis/build-openctm.sh index 41bfa22..957d7d0 100644 --- a/travis/build-openctm.sh +++ b/travis/build-openctm.sh @@ -2,7 +2,8 @@ # If on Linux, install GTK2 if [[ uname == 'Linux' ]]; then - yum install gtk2-devel -y + yum groupinstall "Development Tools" -y + yum install gtk+-devel gtk2-devel -y fi git clone https://github.com/Danny02/OpenCTM.git openctm_tmp