From 589858df909f8a8e0e4233a9ddffde8b7735679a Mon Sep 17 00:00:00 2001 From: chiri Date: Sat, 13 Sep 2025 23:00:50 +0300 Subject: [PATCH 1/2] drop python 3.8 in `python-test` --- .github/workflows/python-test.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/python-test.yml b/.github/workflows/python-test.yml index 5130d6d..a717bdb 100644 --- a/.github/workflows/python-test.yml +++ b/.github/workflows/python-test.yml @@ -15,7 +15,6 @@ jobs: fail-fast: false matrix: python-version: - - "3.8" - "3.9" - "3.10" - "3.11" From 22a2b99345510d45164774abc6454aa962520e0c Mon Sep 17 00:00:00 2001 From: chiri Date: Sat, 13 Sep 2025 23:02:50 +0300 Subject: [PATCH 2/2] bump requires-python in pyproject.toml --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index b90d6c7..d2b779e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "maturin" [project] name = "cachebox" -requires-python = ">=3.8" +requires-python = ">=3.9" keywords = ["caching", "cached", "cachebox", "cache", "in-memory-caching", "memoizing"] authors = [ {name = "awolverp", email = "awolverp@gmail.com"}