Added h5py to the conda install

Test with some travis steps removes

Testing

Tweaking

Tweaking

Tweaking

Final tweaking
This commit is contained in:
Tennessee Leeuwenburg 2015-07-17 09:06:36 +10:00 committed by Thomas McColgan
parent a3052e708a
commit 66247a8261
2 changed files with 4 additions and 7 deletions

@ -7,15 +7,12 @@ before_install:
- ./miniconda.sh -b
- export PATH=/home/travis/miniconda/bin:$PATH
- conda update --yes conda
# The next couple lines fix a crash with multiprocessing on Travis and are not specific to using Miniconda
- sudo rm -rf /dev/shm
- sudo ln -s /run/shm /dev/shm
python:
- "3.4"
# command to install dependencies
install:
- conda install --yes python=$TRAVIS_PYTHON_VERSION numpy scipy matplotlib pandas pytest
- conda install --yes python=$TRAVIS_PYTHON_VERSION numpy scipy matplotlib pandas pytest h5py
# Coverage packages are on my binstar channel
- python setup.py install
# command to run tests
script: py.test
script: py.test tests/

@ -9,6 +9,6 @@ setup(name = 'Keras',
url = 'https://github.com/fchollet/keras',
download_url = 'https://github.com/fchollet/keras/tarball/0.1.1',
license = 'MIT',
install_requires = ['theano', 'pyyaml'],
install_requires = ['theano', 'pyyaml', 'h5py'],
packages = find_packages(),
)
)