From 0e99b02c92e03f7b5b8108d71229f1330e1c4ba4 Mon Sep 17 00:00:00 2001 From: Gonzalo Rafuls Date: Mon, 10 Nov 2025 19:09:50 +0100 Subject: [PATCH 1/3] fix: CI removed from ruff tests --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index e1c5f02..1426e1e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ requires = [ ] [tool.ruff] -extend-exclude = ["static", "ci/templates"] +extend-exclude = ["static", "ci"] line-length = 140 src = ["src", "tests"] target-version = "py39" From e8f282e0e7c38181f07f15526a607dcac54b4414 Mon Sep 17 00:00:00 2001 From: Gonzalo Rafuls Date: Wed, 12 Nov 2025 08:33:56 +0100 Subject: [PATCH 2/3] fix: bumped pypy version to 3.12 --- .github/workflows/github-actions.yml | 8 ++++---- tox.ini | 5 ++--- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/.github/workflows/github-actions.yml b/.github/workflows/github-actions.yml index 3efee1c..95805ae 100644 --- a/.github/workflows/github-actions.yml +++ b/.github/workflows/github-actions.yml @@ -37,11 +37,11 @@ jobs: python_arch: 'x64' tox_env: 'py312' os: 'ubuntu-latest' - - name: 'pypy310' - python: 'pypy-3.10' - toxpython: 'pypy3.10' + - name: 'pypy312' + python: 'pypy-3.12' + toxpython: 'pypy3.12' python_arch: 'x64' - tox_env: 'pypy310' + tox_env: 'pypy312' os: 'ubuntu-latest' steps: - uses: actions/checkout@v4 diff --git a/tox.ini b/tox.ini index 526b9b6..1681107 100644 --- a/tox.ini +++ b/tox.ini @@ -14,14 +14,13 @@ envlist = clean, check, docs, - {py39,py310,py311,py312,pypy39,pypy310}, + {py39,py310,py311,py312,pypy312}, report ignore_basepython_conflict = true [testenv] basepython = - pypy39: {env:TOXPYTHON:pypy3.9} - pypy310: {env:TOXPYTHON:pypy3.10} + pypy312: {env:TOXPYTHON:pypy3.12} py39: {env:TOXPYTHON:python3.9} py310: {env:TOXPYTHON:python3.10} py311: {env:TOXPYTHON:python3.11} From 83426643bb5006f9eef947c222e2b5b31289d76c Mon Sep 17 00:00:00 2001 From: Gonzalo Rafuls Date: Wed, 12 Nov 2025 08:40:07 +0100 Subject: [PATCH 3/3] fix: downgrade pypy version to available 3.11 --- .github/workflows/github-actions.yml | 8 ++++---- tox.ini | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/github-actions.yml b/.github/workflows/github-actions.yml index 95805ae..69b2e52 100644 --- a/.github/workflows/github-actions.yml +++ b/.github/workflows/github-actions.yml @@ -37,11 +37,11 @@ jobs: python_arch: 'x64' tox_env: 'py312' os: 'ubuntu-latest' - - name: 'pypy312' - python: 'pypy-3.12' - toxpython: 'pypy3.12' + - name: 'pypy311' + python: 'pypy-3.11' + toxpython: 'pypy3.11' python_arch: 'x64' - tox_env: 'pypy312' + tox_env: 'pypy311' os: 'ubuntu-latest' steps: - uses: actions/checkout@v4 diff --git a/tox.ini b/tox.ini index 1681107..70a29fc 100644 --- a/tox.ini +++ b/tox.ini @@ -14,13 +14,13 @@ envlist = clean, check, docs, - {py39,py310,py311,py312,pypy312}, + {py39,py310,py311,py312,pypy311}, report ignore_basepython_conflict = true [testenv] basepython = - pypy312: {env:TOXPYTHON:pypy3.12} + pypy311: {env:TOXPYTHON:pypy3.11} py39: {env:TOXPYTHON:python3.9} py310: {env:TOXPYTHON:python3.10} py311: {env:TOXPYTHON:python3.11}