Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmedhosny committed Jan 16, 2019
2 parents ee4f282 + 6cb52d2 commit 1bb8936
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ install:
- pip install numpy
- pip install Pillow==5.1.0
- pip install SimpleITK==1.1.0
- pip install requests==2.18.4
- pip install requests==2.20.0
- pip install python-magic==0.4.15
- pip install coverage
- pip install coveralls
script:
Expand Down
6 changes: 5 additions & 1 deletion framework/modelhubapi_tests/apitestbase.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@
import os
from modelhubapi import ModelHubRESTAPI


# Python 2/3 compatibility
try:
basestring
except NameError:
basestring = str

class TestAPIBase(unittest.TestCase):
"""
Expand Down
3 changes: 2 additions & 1 deletion framework/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@ Pillow==5.1.0
SimpleITK==1.1.0
jupyter==1.0.0
netron==1.7.4
requests==2.18.4
requests==2.20.0
python-magic==0.4.15

0 comments on commit 1bb8936

Please sign in to comment.