Skip to content

Commit

Permalink
Apply suggestions from code review - kou
Browse files Browse the repository at this point in the history
Co-authored-by: Sutou Kouhei <kou@cozmixng.org>
  • Loading branch information
AlenkaF and kou authored Mar 1, 2023
1 parent d56f4b7 commit 1ebe276
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions ci/docker/conda-python-spark.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ RUN mamba install -q -y \
openjdk=${jdk} \
maven=${maven} \
pandas && \
mamba clean --all
RUN mamba uninstall -q -y numpy && \
mamba clean --all && \
mamba uninstall -q -y numpy && \
/arrow/ci/scripts/install_numpy.sh ${numpy}

# installing specific version of spark
Expand Down
2 changes: 1 addition & 1 deletion ci/scripts/install_numpy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

set -e

if [ "$#" -lt 1 ]; then
if [ $# -gt 1 ]; then
echo "Usage: $0 <optional numpy version = latest>"
exit 1
fi
Expand Down

0 comments on commit 1ebe276

Please sign in to comment.