From 083d3cc4ee46cf72d3e2aa74ca6b481b161cdd18 Mon Sep 17 00:00:00 2001 From: github-actions Date: Wed, 27 Nov 2024 10:22:32 +0000 Subject: [PATCH] Automated deployment to update package flux-core 2024-11-27 --- packages/flux-core/package.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/flux-core/package.py b/packages/flux-core/package.py index 71d21097897d1c..0e269925379198 100644 --- a/packages/flux-core/package.py +++ b/packages/flux-core/package.py @@ -91,7 +91,8 @@ class FluxCore(AutotoolsPackage): # `link` dependency on python due to Flux's `pymod` module depends_on("python@3.6:", type=("build", "link", "run")) # Use of distutils in configure script dropped in v0.55 - depends_on("python@:3.11", when="@:0.54", type=("build", "link", "run")) + # Detection of cffi version fixed in v0.68 + depends_on("python@:3.11", when="@:0.67", type=("build", "link", "run")) depends_on("py-cffi@1.1:", type=("build", "run")) depends_on("py-pyyaml@3.10:", type=("build", "run")) depends_on("py-jsonschema@2.3:", type=("build", "run"), when="@:0.58.0")