This is an automated email from the ASF dual-hosted git repository.
JingsongLi pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/paimon.git
The following commit(s) were added to refs/heads/master by this push:
new 07a1f5d315 [ci][python] Use Debian archive for Python 3.6 (#9684)
07a1f5d315 is described below
commit 07a1f5d3151de4ad16134400a639a404df44289a
Author: XiaoHongbo <[email protected]>
AuthorDate: Tue Sep 8 14:18:14 2026 +0800
[ci][python] Use Debian archive for Python 3.6 (#9684)
---
.github/workflows/paimon-python-checks.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/paimon-python-checks.yml
b/.github/workflows/paimon-python-checks.yml
index b8ecc00913..1124e8b83e 100755
--- a/.github/workflows/paimon-python-checks.yml
+++ b/.github/workflows/paimon-python-checks.yml
@@ -69,6 +69,12 @@ jobs:
- name: Install system dependencies
shell: bash
run: |
+ if [[ "${{ matrix.python-version }}" == "3.6.15" ]]; then
+ # The Python 3.6 image uses EOL Debian Bullseye.
+ sed -i '/security.debian.org\/debian-security/d'
/etc/apt/sources.list
+ sed -i 's|deb.debian.org/debian|archive.debian.org/debian|g'
/etc/apt/sources.list
+ echo 'Acquire::Check-Valid-Until "false";' >
/etc/apt/apt.conf.d/99archive
+ fi
apt-get update && apt-get install -y \
build-essential \
git \