From 55b0eb2fd82081c1047d4b98a7bc67cf4047ae0d Mon Sep 17 00:00:00 2001 From: Greg Pauloski <18683347+gpauloski@users.noreply.github.com> Date: Fri, 31 Jan 2025 09:39:47 -0600 Subject: [PATCH] Remove upper bound on ProxyStore versions The ProxyStore APIs relevant to Colmena have been stable for a while now, and I don't have any plans to make any breaking changes there. I think its safe now to remove the upper bound. This should make version solving easier which is likely to be a more common frustration for users than any highly unlikely breaking changes to the ProxyStore core API. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index dac2f77..12ff934 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,7 +26,7 @@ dependencies = [ "parsl>=2022", "pydantic>=2,<3", "redis>=4.3", - "proxystore>=0.5.0,<0.8.0" + "proxystore>=0.5.0" ] [tool.setuptools.packages.find]