From efc94b85f71048df9383dadf250d81d35a671493 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Tue, 28 Nov 2023 17:40:44 +0100 Subject: [PATCH 1/6] Update ci.yaml + - "3.11" + - "3.12" + - os: "ubuntu-latest" + python: "pypy-3.10" + - os: "macos-latest" + python: 3.x --- .github/workflows/ci.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 3b8e9b0..827a096 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -36,11 +36,17 @@ jobs: - "3.8" - "3.9" - "3.10" + - "3.11" + - "3.12" include: - os: "ubuntu-20.04" python: "3.6" - os: "ubuntu-20.04" python: "pypy-3.6" + - os: "ubuntu-latest" + python: "pypy-3.10" + - os: "macos-latest" + python: 3.x steps: - uses: actions/checkout@v4 From b692e59185304aeb2842b85bdf6fca85f04ea1dd Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Tue, 28 Nov 2023 17:46:08 +0100 Subject: [PATCH 2/6] Update tox.ini --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index cc9dfc5..f080b5c 100644 --- a/tox.ini +++ b/tox.ini @@ -14,7 +14,7 @@ [tox] minversion = 1.9 -envlist = lint, py{36,37,38,39,310,py3} +envlist = lint, py{36,37,38,39,310,311,312,py3} isolated_build = true skip_missing_interpreters = true From 15e8032bea48a7d25f09ef8c4f3c18cd20f828e1 Mon Sep 17 00:00:00 2001 From: Samuel FORESTIER Date: Wed, 29 Nov 2023 22:03:14 +0000 Subject: [PATCH 3/6] Bumps Flake8 to v6.1.0 > see PyCQA/flake8#1701 --- .pre-commit-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index ea0857c..95cbb41 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -5,7 +5,7 @@ repos: - id: black args: ["--target-version", "py36"] - repo: https://github.com/PyCQA/flake8 - rev: 3.9.2 + rev: 6.1.0 hooks: - id: flake8 - repo: https://github.com/pycqa/isort From 487d2df5612a9a1cdbc8eed55fb3fefc4fb1e29e Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Thu, 30 Nov 2023 10:51:59 +0100 Subject: [PATCH 4/6] ubuntu-22.04 --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 827a096..1e72a84 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -43,7 +43,7 @@ jobs: python: "3.6" - os: "ubuntu-20.04" python: "pypy-3.6" - - os: "ubuntu-latest" + - os: "ubuntu-22.04" python: "pypy-3.10" - os: "macos-latest" python: 3.x From 5b71e30ab0f2fd7da9cc8005169043ba72abf39f Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Thu, 30 Nov 2023 10:52:44 +0100 Subject: [PATCH 5/6] python: 3.12 --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 1e72a84..bb7934e 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -46,7 +46,7 @@ jobs: - os: "ubuntu-22.04" python: "pypy-3.10" - os: "macos-latest" - python: 3.x + python: 3.12 steps: - uses: actions/checkout@v4 From abff7d98932bad26dc46219be46d74d9a6756a16 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Thu, 30 Nov 2023 18:50:41 +0100 Subject: [PATCH 6/6] Pin macOS to legacy-legacy-stable to avoid Apple Silicon --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index bb7934e..bc254f6 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -45,7 +45,7 @@ jobs: python: "pypy-3.6" - os: "ubuntu-22.04" python: "pypy-3.10" - - os: "macos-latest" + - os: "macos-12" python: 3.12 steps: