From bce97812b88914da079faf9f76741ccdeeb91943 Mon Sep 17 00:00:00 2001 From: Max Ghenis Date: Tue, 27 Jan 2026 21:21:38 -0500 Subject: [PATCH] Relax Python version requirement to >=3.10 Fixes #1493 The >=3.13 requirement was unintentionally set when migrating from setup.py (which had >=3.7) to pyproject.toml. This aligns with policyengine-us which uses >=3.10,<3.14. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index d9571cf79..5892f50ac 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -22,7 +22,7 @@ classifiers = [ "Programming Language :: Python :: 3.13", "Topic :: Scientific/Engineering :: Information Analysis", ] -requires-python = ">=3.13,<3.14" +requires-python = ">=3.10,<3.14" dependencies = [ "policyengine-core>=3.23.6", "microdf-python>=1.2.1",