From fdea483f1ccb183eaf651521236b8463a84a49ec Mon Sep 17 00:00:00 2001 From: Alyssa Travitz Date: Mon, 27 Oct 2025 10:19:26 -0700 Subject: [PATCH] pin to python < 3.14 in pyproject.toml --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 7cc5f139f..487933fdf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,7 +13,8 @@ readme = "README.md" license = "MIT" license-files = [ "LICENSE" ] authors = [ { name = "The OpenFE developers", email = "openfe@omsf.io" } ] -requires-python = ">=3.10" +# blocked by OpenMM 8.4 for python 3.14 support +requires-python = ">=3.10,<3.14" classifiers = [ "Development Status :: 1 - Planning", @@ -25,7 +26,6 @@ classifiers = [ "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", - "Programming Language :: Python :: 3.14", "Topic :: Scientific/Engineering :: Bio-Informatics", "Topic :: Scientific/Engineering :: Chemistry", ]