From f05289e628045c7e034d0127c8b6997afc0aa638 Mon Sep 17 00:00:00 2001 From: grabowski Date: Mon, 10 Aug 2026 16:15:32 +0700 Subject: [PATCH] fix: CI matrix to Python 3.11 only until pandas is upgraded pandas 2.0.3 has no cp312 wheels, so the 3.12 matrix leg fails during dependency install. The deployment runs 3.11. --- .gitea/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index cd55a70..c625013 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.11', '3.12'] + python-version: ['3.11'] # pandas 2.0.3 ships no 3.12 wheels; widen after upgrading pandas steps: - name: Checkout code