Skip to content

Commit

Permalink
Issue yell#8 Fix builds
Browse files Browse the repository at this point in the history
  • Loading branch information
SrMouraSilva committed Mar 6, 2019
1 parent 2923992 commit 24f0411
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 12 deletions.
4 changes: 1 addition & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,10 @@ install:
- pip install -U setuptools
- pip uninstall --yes pytest
- python setup_cpu.py develop
- make test
- codecov

script:
- make test
- #make test-docs
- codecov

after_success:
- bash <(curl -s https://codecov.io/bash)
12 changes: 6 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@
setup(name='boltzmann_machines',
version='0.1',
url='https://github.com/monsta-hd/boltzmann-machines',
install_requires=['tensorflow==1.13.*',
'scipy>=0.17',
'keras>=2.0.8',
'matplotlib>=1.5.3',
install_requires=['tensorflow-gpu>=1.13.*,<2.0.0',
'scipy>=0.17',
'keras>=2.0.8',
'matplotlib>=1.5.3,<3.0.0',
'numpy>=1.16.0',
'scikit-learn>=0.19.0',
'seaborn>=0.8.1',
'seaborn>=0.8.1',
'tqdm>=4.14.0',
# Tests
'pytest==4.3.*',
'pytest>=4.3.*',
'pytest-cov>=2.6.1',
'nose>=1.3.4',
'nose-exclude>=0.5.0',
Expand Down
6 changes: 3 additions & 3 deletions setup_cpu.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@
setup(name='boltzmann_machines',
version='0.1',
url='https://github.com/monsta-hd/boltzmann-machines',
install_requires=['tensorflow==1.13.*',
install_requires=['tensorflow>=1.13.*,<2.0.0',
'scipy>=0.17',
'keras>=2.0.8',
'matplotlib>=1.5.3',
'matplotlib>=1.5.3,<3.0.0',
'numpy>=1.16.0',
'scikit-learn>=0.19.0',
'seaborn>=0.8.1',
'tqdm>=4.14.0',
# Tests
'pytest==4.3.*',
'pytest>=4.3.*',
'pytest-cov>=2.6.1',
'nose>=1.3.4',
'nose-exclude>=0.5.0',
Expand Down

0 comments on commit 24f0411

Please sign in to comment.