Skip to content

Commit cfd95dc

Browse files
authored
Merge pull request #159 from aws/pyarrow-fix
PyArrow/Numpy Version Bump Error Fix
2 parents 80b4263 + 623cd13 commit cfd95dc

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

docker/1.0-1/base/Dockerfile.cpu

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@ ARG CONDA_CHECKSUM=3190da6626f86eee8abf1b2fd7a5af492994eb2667357ee4243975cdbb175
88
ARG CONDA_PY_VERSION=38
99
ARG CONDA_PKG_VERSION=4.13.0
1010
ARG PYTHON_VERSION=3.8.13
11-
ARG PYARROW_VERSION=1.0.0
12-
ARG MLIO_VERSION=0.7.0
11+
ARG PYARROW_VERSION=10.0.1
12+
ARG MLIO_VERSION=v0.8.0
13+
ARG NUMPY_VERSION=1.24.1
1314

1415
# Install python and other scikit-learn runtime dependencies
1516
# Dependency list from http://scikit-learn.org/stable/developers/advanced_installation.html#installing-build-dependencies
@@ -81,9 +82,10 @@ RUN echo "conda ${CONDA_PKG_VERSION}" >> /miniconda3/conda-meta/pinned && \
8182
conda install -c conda-forge python=${PYTHON_VERSION} && \
8283
conda install conda=${CONDA_PKG_VERSION} && \
8384
conda update -y conda && \
85+
conda install -c conda-forge numpy=${NUMPY_VERSION} && \
8486
conda install -c conda-forge pyarrow=${PYARROW_VERSION} && \
8587
cd /tmp && \
86-
git clone --branch v${MLIO_VERSION} https://github.com/awslabs/ml-io.git mlio && \
88+
git clone --branch ${MLIO_VERSION} https://github.com/awslabs/ml-io.git mlio && \
8789
cd mlio && \
8890
build-tools/build-dependency build/third-party all && \
8991
mkdir -p build/release && \

requirements.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ itsdangerous==2.0.1
66
gunicorn==20.0.4
77
model-archiver==1.0.3
88
multi-model-server==1.1.1
9-
numpy==1.22
109
pandas==1.1.3
1110
protobuf==3.20.2
1211
psutil==5.7.2

0 commit comments

Comments
 (0)