This commit is contained in:
Neil Lawrence 2013-01-18 13:37:24 +00:00
commit a856b6a804
2 changed files with 4 additions and 5 deletions

View file

@ -3,8 +3,7 @@ python:
- "2.7" - "2.7"
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors # command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install: install:
- pip install "scipy>=0.10.1" - sudo apt-get install python-scipy
- pip install "numpy>=1.6.2"
- pip install sphinx - pip install sphinx
- pip install . --use-mirrors - pip install . --use-mirrors
# command to run tests, e.g. python setup.py test # command to run tests, e.g. python setup.py test

View file

@ -24,9 +24,9 @@ setup(name = 'GPy',
package_data = {'GPy': ['GPy/examples']}, package_data = {'GPy': ['GPy/examples']},
py_modules = ['GPy.__init__'], py_modules = ['GPy.__init__'],
long_description=read('README.md'), long_description=read('README.md'),
ext_modules = [Extension(name = 'GPy.kern.lfmUpsilonf2py', #ext_modules = [Extension(name = 'GPy.kern.lfmUpsilonf2py',
sources = ['GPy/kern/src/lfmUpsilonf2py.f90'])], # sources = ['GPy/kern/src/lfmUpsilonf2py.f90'])],
install_requires=['numpy>=1.6', 'scipy>=0.9','matplotlib>=1.1'], install_requires=['numpy>=1.6', 'scipy','matplotlib>=1.1'],
setup_requires=['sphinx'], setup_requires=['sphinx'],
cmdclass = {'build_sphinx': BuildDoc}, cmdclass = {'build_sphinx': BuildDoc},
classifiers=[ classifiers=[