Skip to content

Commit

Permalink
Merge branch 'scipy015' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
jakeret committed Apr 30, 2015
2 parents c764c0f + 5fb7396 commit 0d15fe7
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 15 deletions.
23 changes: 13 additions & 10 deletions .travis.yml
@@ -1,17 +1,20 @@
# Config file for automatic testing at travis-ci.org
language: python

before_install:
- sudo apt-get install -qq python-numpy python-scipy

python:
- "2.7_with_system_site_packages"

- "2.7"
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq libatlas-dev libatlas-base-dev liblapack-dev gfortran
- wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
- chmod +x miniconda.sh
- ./miniconda.sh -b
- export PATH=/home/travis/miniconda/bin:$PATH
- conda update --yes conda
- travis_retry conda install --yes python=$TRAVIS_PYTHON_VERSION pip numpy scipy
install:
- pip install coveralls
- pip install -r requirements.txt

- travis_retry pip install coveralls
- travis_retry pip install -r requirements.txt
# command to run tests, e.g. python setup.py test
script: coverage run --source abcpmc setup.py test
after_success:
coveralls

8 changes: 6 additions & 2 deletions README.rst
Expand Up @@ -2,6 +2,9 @@
abcpmc
=============================

.. image:: https://badge.fury.io/py/abcpmc.png
:target: http://badge.fury.io/py/abcpmc

.. image:: https://travis-ci.org/jakeret/abcpmc.png?branch=master
:target: https://travis-ci.org/jakeret/abcpmc

Expand All @@ -15,8 +18,9 @@ A Python Approximate Bayesian Computing (ABC) Population Monte Carlo (PMC) imple
:alt: approximated 2d posterior (created with triangle.py).
:align: center


The development is coordinated on `GitHub <http://github.com/jakeret/abcpmc>`_ and contributions are welcome. The documentation of `abcpmc` is available at `RTD <http://abcpmc.readthedocs.org/>`_.
The **abcpmc** package has been developed at ETH Zurich in the `Software Lab of the Cosmology Research Group <http://www.cosmology.ethz.ch/research/software-lab.html>`_ of the `ETH Institute of Astronomy <http://www.astro.ethz.ch>`_.

The development is coordinated on `GitHub <http://github.com/jakeret/abcpmc>`_ and contributions are welcome. The documentation of **abcpmc** is available at `readthedocs.org <http://abcpmc.readthedocs.org/>`_.

Features
--------
Expand Down
Binary file modified docs/abcpmc.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion requirements.txt
@@ -1,5 +1,5 @@
numpy
scipy
scipy>=0.15.0
Sphinx>=1.2.3
mock>=1.0.1
pytest>=2.6.3
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -37,7 +37,7 @@ def run_tests(self):

history = open('HISTORY.rst').read().replace('.. :changelog:', '')

requires = ["numpy", "scipy"] #during runtime
requires = ["numpy", "scipy>=0.15"] #during runtime
tests_require=['pytest>=2.3', 'mock'] #for testing

PACKAGE_PATH = os.path.abspath(os.path.join(__file__, os.pardir))
Expand All @@ -49,7 +49,7 @@ def run_tests(self):
long_description=readme + '\n\n' + doclink + '\n\n' + history,
author='Joel Akeret',
author_email='jakeret@phys.ethz.ch',
url='http://www.cosmology.ethz.ch/research/software-lab.html',
url='http://www.cosmology.ethz.ch/research/software-lab/abcpmc.html',
packages=find_packages(PACKAGE_PATH, "test"),
package_dir={'abcpmc': 'abcpmc'},
include_package_data=True,
Expand Down

0 comments on commit 0d15fe7

Please sign in to comment.