Skip to content

Commit

Permalink
Added h5py to the conda install
Browse files Browse the repository at this point in the history
Test with some travis steps removes

Testing

Tweaking

Tweaking

Tweaking

Final tweaking
  • Loading branch information
tleeuwenburg authored and phreeza committed Jul 22, 2015
1 parent a3052e7 commit 66247a8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
7 changes: 2 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
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(),
)
)

0 comments on commit 66247a8

Please sign in to comment.