From d638c49d3c048f23aee2beca630d776bae4836b7 Mon Sep 17 00:00:00 2001 From: Carl Date: Fri, 11 Sep 2026 11:43:01 -0700 Subject: [PATCH] ci: do not force python 3.11.9 over the image interpreter rocker/ml ships a complete /opt/venv on Python 3.14. Requesting 3.11.9 makes setup-python install a second interpreter that shadows it, discarding every preinstalled package and forcing pip to rebuild the stack -- which is how the pinned duckdb ended up compiling from source and hitting the memory limit. --- .github/workflows/main.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index de7de4b..cd5bacd 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -12,8 +12,6 @@ jobs: steps: - uses: actions/checkout@v7 - uses: actions/setup-python@v7 - with: - python-version: '3.11.9' - name: Install Dependencies run: pip install -r requirements.txt - name: test