Skip to content
This repository has been archived by the owner on Apr 23, 2021. It is now read-only.

Commit

Permalink
Merge pull request #6 from simphony/preapre-0.1.0-release
Browse files Browse the repository at this point in the history
Prepare 0.1.0 release
  • Loading branch information
itziakos committed Mar 4, 2015
2 parents 2c1a1e6 + a7ac175 commit 114cb38
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 9 deletions.
6 changes: 2 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,15 @@ language: python
python:
- "2.7"
virtualenv:
system_site_packages: true
system_site_packages: true
before_install:
- sudo sh -c "echo deb http://www.openfoam.org/download/ubuntu precise main > /etc/apt/sources.list.d/openfoam.list"
- sudo apt-get update -qq
- sudo apt-get install -y --force-yes openfoam222
- sudo apt-get install libhdf5-serial-dev
- pip install numpy # pyfoam requires numpy
- chmod +x ./install_pyFoam.sh
- sudo ./install_pyFoam.sh
- source /opt/openfoam222/etc/bashrc
- python check_PyFoam.py
- sudo ./install_external.sh
# (1) Install cython and numexpr externally because the requirements does
# not work with them
# (2) Pytables breaks with latest Cython
Expand Down
8 changes: 4 additions & 4 deletions install_pyFoam.sh → install_external.sh
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
#!/bin/bash

set -e
# install pyFoam as a regular user
# fetch pyFoam
cd ~
svn co https://svn.code.sf.net/p/openfoam-extend/svn/trunk/Breeder/other/scripting/PyFoam/
# move to installation directory
cd PyFoam
python setup.py install


cd ..
source /opt/openfoam222/etc/bashrc
python check_PyFoam.py
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
with open('README.rst', 'r') as readme:
README_TEXT = readme.read()

VERSION = '0.001'
VERSION = '0.1.0'


def write_version_py(filename=None):
Expand Down

0 comments on commit 114cb38

Please sign in to comment.