Skip to content
Snippets Groups Projects
Unverified Commit 7dbca4ca authored by Tim O'Donnell's avatar Tim O'Donnell Committed by GitHub
Browse files

Merge pull request #152 from openvax/fix-issue-150

Specify tensorflow version less than 2.0.0
parents 06b2baa1 13497624
No related branches found
No related tags found
No related merge requests found
...@@ -24,7 +24,7 @@ addons: ...@@ -24,7 +24,7 @@ addons:
install: install:
- > - >
conda create -q -n test-environment python=$TRAVIS_PYTHON_VERSION conda create -q -n test-environment python=$TRAVIS_PYTHON_VERSION
numpy scipy nose pandas matplotlib mkl-service tensorflow pypandoc numpy scipy nose pandas matplotlib mkl-service 'tensorflow>=1.1.0,<2.0.0' pypandoc
- source activate test-environment - source activate test-environment
- pip install nose-timer - pip install nose-timer
- pip install -r requirements.txt - pip install -r requirements.txt
......
__version__ = "1.4.0" __version__ = "1.4.1"
...@@ -2,7 +2,7 @@ six ...@@ -2,7 +2,7 @@ six
numpy>=1.11 numpy>=1.11
pandas>=0.20.3 pandas>=0.20.3
Keras>=2.2.5 Keras>=2.2.5
tensorflow>=1.1.0 tensorflow>=1.1.0,<2.0.0
appdirs appdirs
scikit-learn scikit-learn
mhcnames mhcnames
......
...@@ -53,7 +53,7 @@ if __name__ == '__main__': ...@@ -53,7 +53,7 @@ if __name__ == '__main__':
'pandas>=0.20.3', 'pandas>=0.20.3',
'Keras>=2.2.5', 'Keras>=2.2.5',
'appdirs', 'appdirs',
'tensorflow>=1.1.0', 'tensorflow>=1.1.0,<2.0.0',
'scikit-learn', 'scikit-learn',
'mhcnames', 'mhcnames',
'pyyaml', 'pyyaml',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment