From 9b9b700ea463a2505f28d8c04717d9bd34787d5e Mon Sep 17 00:00:00 2001 From: Joshua Hamilton Date: Thu, 19 Dec 2024 00:16:16 -0600 Subject: [PATCH] explicitly state compatible python versions in pyproject.toml (#153) --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 10ad86c..d07146f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,7 +17,7 @@ dependencies = [ "statsmodels>=0.13.5", "scipy<1.14.1" ] -requires-python = ">=3.9" +requires-python = ">=3.9,<3.13" [project.urls] Homepage = "https://github.com/open-spaced-repetition/fsrs-optimizer"