From 8044cf6b7384cd16ab626088881c80869b61fdb0 Mon Sep 17 00:00:00 2001 From: "Olivier Wilkinson (reivilibre)" Date: Thu, 21 Mar 2024 18:17:03 +0000 Subject: [PATCH 1/2] Bump up minimum Python to 3.8 in CI --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 273cbbb..0f81f5d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,7 +34,7 @@ jobs: matrix: # Run the unit tests both against our oldest supported Python version # and the newest stable. - python_version: [ "3.7", "3.x" ] + python_version: [ "3.8", "3.x" ] steps: - uses: actions/checkout@v2 - uses: actions/setup-python@v2 From f657ba9d0a95b71840734aaf846751c9b463cd42 Mon Sep 17 00:00:00 2001 From: "Olivier Wilkinson (reivilibre)" Date: Thu, 21 Mar 2024 18:17:11 +0000 Subject: [PATCH 2/2] Bump up lint tools --- setup.cfg | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.cfg b/setup.cfg index 8b0779c..494b8d3 100644 --- a/setup.cfg +++ b/setup.cfg @@ -27,12 +27,12 @@ dev = ldaptor # for type checking - mypy == 0.910 + mypy == 1.9.0 types-setuptools # for linting black == 22.3.0 - flake8 == 4.0.1 + flake8 == 7.0.0 isort == 5.9.3 [flake8]