From 02c4a0058216c469b119834308f19e91926ed453 Mon Sep 17 00:00:00 2001 From: Stanislav Kaledin Date: Thu, 19 Feb 2026 14:09:17 +0400 Subject: [PATCH] Pin python version, there's build problem for 3.14 Fix tests, add black --- .github/workflows/tag.yaml | 2 +- .github/workflows/test.yaml | 6 ++---- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/tag.yaml b/.github/workflows/tag.yaml index 626dd2f..79b099b 100644 --- a/.github/workflows/tag.yaml +++ b/.github/workflows/tag.yaml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest container: - image: python + image: python:3.13 steps: - name: Check out git repo diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index c402c9e..71d5a31 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest container: - image: python + image: python:3.13 steps: - name: Check out git repo @@ -25,9 +25,7 @@ jobs: run: git config --global --add safe.directory '*' - name: Install dependencies - env: - PYO3_USE_ABI3_FORWARD_COMPATIBILITY: "1" - run: pip3 install poetry flake8 black && poetry config virtualenvs.create ${USE_VENV} && poetry install + run: pip3 install poetry flake8 black && poetry config virtualenvs.create ${USE_VENV} && poetry install && pip install black # # - name: flake8 # run: flake8 --max-line-length=120 .