Skip to content

Commit

Permalink
Merge pull request #103 from SEL-Columbia/rel_0.7.2
Browse files Browse the repository at this point in the history
remove futures dependency (std since python v3.2) and use python 3 for
  • Loading branch information
chrisnatali authored Jul 23, 2017
2 parents 8a6ec59 + 4ab92e1 commit 8cb162f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 1 addition & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
language: python
sudo: false
python:
- "2.7"
install:
- wget https://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
- bash miniconda.sh -b -p $HOME/miniconda
Expand All @@ -12,7 +10,7 @@ install:
# Useful for debugging any issues with conda
- conda info -a
# setup modelrunner
- conda create -n modelrunner python=2.7
- conda create -n modelrunner python=3
# setup coverage
- conda install --yes -n modelrunner coverage nose
- conda install --yes -n modelrunner -c conda-forge python-coveralls
Expand Down
3 changes: 3 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 0.7.2
- Minor updates for later versions of Python 3

## 0.7.1
- consistentize model deployment

Expand Down
2 changes: 1 addition & 1 deletion modelrunner/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from .worker_server import WorkerServer # noqa
from .primary_server import PrimaryServer # noqa

__version__ = "0.7.1"
__version__ = "0.7.2"

logger = logging.getLogger('modelrunner')
logger.setLevel(logging.INFO)
Expand Down
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
tornado
futures
redis
psutil
six

0 comments on commit 8cb162f

Please sign in to comment.