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 .