Skip to content

Commit

Permalink
Fix py27 requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
lscheinkman committed Oct 24, 2019
1 parent cdc5053 commit 94ff84c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
**/.*
2 changes: 2 additions & 0 deletions Dockerfile.py27
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ ENV PATH $JAVA_HOME/bin:$PATH
ENV NAB /usr/local/src/nab

ADD . $NAB
WORKDIR $NAB
RUN python -m pip install -e .

# Run Numenta detectors
RUN echo "Running numenta detectors in Python 2.7..."
Expand Down
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
pandas==0.20.3
simplejson==3.11.1
boto3==1.9.134
scikit-learn==0.21.1
scikit-learn==0.21.1; python_version >= '3.5'
scikit-learn==0.20.1; python_version < '3.5'

0 comments on commit 94ff84c

Please sign in to comment.