From db4c0d705fa4b4bdc4340a0661d4f340715f984c Mon Sep 17 00:00:00 2001 From: daylight-00 Date: Wed, 25 Feb 2026 00:27:32 +0900 Subject: [PATCH 1/2] fix: restore exact python version constraint (==3.12) Commit 49187c3 unintentionally reverted requires-python from ==3.12 back to >=3.12 as a side-effect of the inference fix. This restores the exact version constraint originally introduced in 8aeacba. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 3d55fc7c..81c95344 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ name = "rc-foundry" dynamic = ["version"] description = "Shared utilities and training infrastructure for biomolecular structure prediction models." readme = "README.md" -requires-python = ">=3.12" +requires-python = "==3.12" authors = [ { name = "Institute for Protein Design", email = "contact@ipd.uw.edu" }, ] From 8399cc2327f651a434cf64d9d04a0e12cddf4361 Mon Sep 17 00:00:00 2001 From: David Hyunyoo Jang Date: Wed, 25 Feb 2026 00:42:09 +0900 Subject: [PATCH 2/2] fix: relax python version constraint to allow 3.12.x Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 81c95344..48920790 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ name = "rc-foundry" dynamic = ["version"] description = "Shared utilities and training infrastructure for biomolecular structure prediction models." readme = "README.md" -requires-python = "==3.12" +requires-python = ">=3.12,<3.13" authors = [ { name = "Institute for Protein Design", email = "contact@ipd.uw.edu" }, ]