File tree Expand file tree Collapse file tree 3 files changed +6
-5
lines changed
Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -2,8 +2,9 @@ SHELL := /bin/bash
22
33setup : # # Setup virtual environment for local development
44 python3 -m venv venv
5- source venv/bin/activate \
6- && $(MAKE ) install-requirements
5+ source venv/bin/activate && \
6+ pip install -U pip && \
7+ $(MAKE ) install-requirements
78
89install-requirements :
910 pip install -U -e .
Original file line number Diff line number Diff line change 2323# What packages are required for this module to be executed?
2424REQUIRED = [
2525 'protobuf==3.7.1' ,
26- 'tensorflow==2.0.3 ' ,
26+ 'tensorflow==2.0.1 ' ,
2727 'scikit-learn==0.21.0' ,
2828 'numpy==1.16.2' ,
29- 'pandas= =0.25.1' ,
29+ 'pandas> =0.25.1' ,
3030 'adanet==0.8.0' ,
3131 "tensorflow-datasets==3.0.0" ,
3232 "statsmodels==0.11.1" ,
Original file line number Diff line number Diff line change 1- VERSION = (0 , 0 , 1 )
1+ VERSION = (0 , 1 , 0 )
22
33__version__ = '.' .join (map (str , VERSION ))
You can’t perform that action at this time.
0 commit comments