Skip to content

Commit 36a2f21

Browse files
authored
update pip deps 2020.10 (#95)
1 parent de546d8 commit 36a2f21

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

Makefile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@ SHELL := /bin/bash
22

33
setup: ## 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

89
install-requirements:
910
pip install -U -e .

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@
2323
# What packages are required for this module to be executed?
2424
REQUIRED = [
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",

sqlflow_models/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
VERSION = (0, 0, 1)
1+
VERSION = (0, 1, 0)
22

33
__version__ = '.'.join(map(str, VERSION))

0 commit comments

Comments
 (0)