From 3367ad723a0fa0034dcbe28b52504b4100829874 Mon Sep 17 00:00:00 2001 From: vladkvit Date: Tue, 30 Dec 2025 10:10:45 -0500 Subject: [PATCH] Bump minimum Python version to 3.9 to avoid build issues with timezones --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 018b353..ca473fb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "maturin" [project] name = "rust_pgn_reader_python_binding" -requires-python = ">=3.8" +requires-python = ">=3.9" classifiers = [ "Programming Language :: Rust", "Programming Language :: Python :: Implementation :: CPython",