From 87479024e6098d39cdcd10069948c1c55a1e7276 Mon Sep 17 00:00:00 2001 From: Carlos Adir Date: Tue, 8 Jul 2025 22:36:42 +0200 Subject: [PATCH 1/4] dev: fix github actions python versions --- .github/workflows/build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 84ba9b8..80c54af 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -22,7 +22,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-latest] - python-version: ['3.5.10', '3.6.15', '3.7.17', '3.8.18', '3.9.23', '3.10.18', '3.11', '3.12', '3.13'] + python-version: ['3.5.x', '3.6.x', '3.7.x', '3.8.x', '3.9.x', '3.10.x', '3.11', '3.12', '3.13'] steps: - name: Checkout sources uses: actions/checkout@v2 From 2a10b2985b127396a6fd7dec156c0d9636f35092 Mon Sep 17 00:00:00 2001 From: Carlos Adir Date: Tue, 8 Jul 2025 22:38:14 +0200 Subject: [PATCH 2/4] dev: update python versions --- .github/workflows/build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 80c54af..c8fe938 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -22,7 +22,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-latest] - python-version: ['3.5.x', '3.6.x', '3.7.x', '3.8.x', '3.9.x', '3.10.x', '3.11', '3.12', '3.13'] + python-version: ['3.5', '3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13'] steps: - name: Checkout sources uses: actions/checkout@v2 From 2ef60994cf8ac046f793989af1bc09ddf56dcebd Mon Sep 17 00:00:00 2001 From: Carlos Adir Date: Tue, 8 Jul 2025 22:41:48 +0200 Subject: [PATCH 3/4] dev: update poetry dependency to start at py3.5 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 290edb6..24465d3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ readme = "README.md" packages = [{ include = "rbool", from = "src" }] [tool.poetry.dependencies] -python = "^3.9" +python = "^3.5" [tool.poetry.dev-dependencies] pytest = "^5.2" From 49af49f0691d41a6ae7d9aad4e6b9347dd680aad Mon Sep 17 00:00:00 2001 From: Carlos Adir Date: Tue, 8 Jul 2025 22:46:45 +0200 Subject: [PATCH 4/4] dev: remove old python version from github actions --- .github/workflows/build.yaml | 2 +- tox.ini | 4 ---- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index c8fe938..d1c7247 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -22,7 +22,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-latest] - python-version: ['3.5', '3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13'] + python-version: ['3.9', '3.10', '3.11', '3.12', '3.13'] steps: - name: Checkout sources uses: actions/checkout@v2 diff --git a/tox.ini b/tox.ini index aec88cd..e9ab7b2 100644 --- a/tox.ini +++ b/tox.ini @@ -24,10 +24,6 @@ commands = [gh-actions] python = - 3.5: py35 - 3.6: py36 - 3.7: py37 - 3.8: py38 3.9: py39, coverage 3.10: py310 3.11: py311