From 0382830a9726aca30b0e0aae33b51ed4c91357ae Mon Sep 17 00:00:00 2001 From: Michel Edkrantz Date: Wed, 4 Feb 2026 14:57:46 +0100 Subject: [PATCH 1/2] Update Python version requirement to 3.9 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 9a8dcc0..8032f77 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,7 +16,7 @@ description = "Kognic Authentication" dependencies = [ "authlib>=0.14.1,<1.7" ] -requires-python=">=3.8" +requires-python=">=3.9" readme = "README.md" keywords = ["Kognic", "API"] license = {text = "MIT"} From 673d07f110ca08ee216ad5a97df1ad8162e35ef9 Mon Sep 17 00:00:00 2001 From: Michel Edkrantz Date: Wed, 4 Feb 2026 14:58:47 +0100 Subject: [PATCH 2/2] Update Python version matrix in workflow Removed Python 3.8 from the matrix of versions to test. --- .github/workflows/python-package.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index dd499ba..9eb0e70 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -22,7 +22,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"] + python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"] steps: - uses: actions/checkout@v6