kou commented on issue #41401: URL: https://github.com/apache/arrow/issues/41401#issuecomment-3246894604
Oh, sorry. I created a duplicated issue... Let's close this. > Should we open a different issue to drop support for AlmaLinux 8 too? Ah, yes. Let's discuss this in the different issue. In my opinion, we can keep AlmaLinux 8 support until it reaches end of security support. But if we find a problem caused by old packages (e.g. C++20 support/C++23 support may cause a problem), we'll drop support for AlmaLinux 8 before end of security support. > I am trying to drop support for Python 3.9 and I see that AlmaLinux packages are 3.9, otherwise I'll have to install Python manually and was wondering if we should just remove support. We're using Python only for Meson and gi-docgen for Apache Arrow C GLib. AlmaLinux 8 also provides Python 3.11 and Python 3.12. So we can switch to newer Python when it's needed: ```diff diff --git a/dev/tasks/linux-packages/apache-arrow/yum/almalinux-8/Dockerfile b/dev/tasks/linux-packages/apache-arrow/yum/almalinux-8/Dockerfile index 3198a1641a..acafdcbddf 100644 --- a/dev/tasks/linux-packages/apache-arrow/yum/almalinux-8/Dockerfile +++ b/dev/tasks/linux-packages/apache-arrow/yum/almalinux-8/Dockerfile @@ -51,8 +51,8 @@ RUN \ ninja-build \ openssl-devel \ pkg-config \ - python39 \ - python39-pip \ + python3.12 \ + python3.12-pip \ re2-devel \ # rapidjson-devel \ rpmdevtools \ ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org