Skip to content

Unify python version #375

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Aug 26, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions docs/deployments/request-handlers.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,9 @@ msgpack==0.6.1
numpy>=1.13.3,<2
requirements-parser==0.2.0
packaging==19.0.0
pillow==6.1.0
regex==2017.4.5
requests==2.21.0
tensorflow==1.14.0 # In TensorFlow model formats only
tensorflow==1.14.0 # In TensorFlow serving images only
onnxruntime==0.5.0 # In ONNX serving images only
```

You can install additional PyPI packages and import your own Python packages. See [Python Packages](../piplines/python-packages.md) for more details.
Expand Down
1 change: 1 addition & 0 deletions examples/imagenet/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pillow
4 changes: 2 additions & 2 deletions images/onnx-serve-gpu/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM nvidia/cuda:9.1-cudnn7-devel
FROM nvidia/cuda:10.0-cudnn7-devel

ARG ONNXRUNTIME_VERSION="0.4.0"
ARG ONNXRUNTIME_VERSION="0.5.0"

RUN apt-get update -qq && apt-get install -y -q \
python3 \
Expand Down
4 changes: 2 additions & 2 deletions images/onnx-serve/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM ubuntu:16.04
FROM ubuntu:18.04

ARG ONNXRUNTIME_VERSION="0.4.0"
ARG ONNXRUNTIME_VERSION="0.5.0"

RUN apt-get update -qq && apt-get install -y -q \
python3 \
Expand Down
2 changes: 1 addition & 1 deletion images/python-packager/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:16.04
FROM ubuntu:18.04

RUN apt-get update -qq && apt-get install -y -q \
python3 \
Expand Down
2 changes: 0 additions & 2 deletions pkg/workloads/cortex/lib/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,4 @@ numpy>=1.13.3,<2
requirements-parser==0.2.0
packaging==19.0.0
json_tricks==3.13.1
pillow==6.1.0
regex==2017.4.5
requests==2.21.0