Skip to content

Commit

Permalink
Update base to arrow 18 and 3.11 by default
Browse files Browse the repository at this point in the history
  • Loading branch information
xmatthias authored Nov 4, 2024
1 parent 79aa608 commit 93db52c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
type: string
description: Arrow version to build
required: true
default: "17.0.0"
default: "18.0.0"


concurrency:
Expand All @@ -21,9 +21,9 @@ concurrency:

jobs:
build:
name: Building for ${{ inputs.arrow_version || '17.0.0' }} on ${{ matrix.python-version }}
name: Building for ${{ inputs.arrow_version || '18.0.0' }} on ${{ matrix.python-version }}
env:
ARROW_VERSION: "${{ inputs.arrow_version || '17.0.0' }}"
ARROW_VERSION: "${{ inputs.arrow_version || '18.0.0' }}"

runs-on: ubuntu-22.04
strategy:
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
ARG PYTHON_VERSION="3.9"
ARG PYTHON_VERSION="3.11"
FROM python:${PYTHON_VERSION}-slim-bookworm as base

# Setup env
ENV LANG C.UTF-8
ENV LC_ALL C.UTF-8
# start pyarrow build
ARG ARROW_VERSION=16.1.0
ARG ARROW_VERSION=18.0.0

RUN apt-get update \
&& apt-get -y install \
Expand Down

0 comments on commit 93db52c

Please sign in to comment.