From 3d4dc84e61482f4c9b2664660ad412656433a801 Mon Sep 17 00:00:00 2001 From: Dominic Davis-Foster Date: Thu, 27 Jun 2024 17:02:42 +0100 Subject: [PATCH] Handle new options in mkrecipe 0.7 --- repo_helper/conda.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/repo_helper/conda.py b/repo_helper/conda.py index 9b1c099e..235471e7 100644 --- a/repo_helper/conda.py +++ b/repo_helper/conda.py @@ -63,6 +63,8 @@ def load_config(self) -> Dict[str, Any]: config["optional-dependencies"] = config["extras_require"] config["dependencies"] = sorted(read_requirements(self.project_dir / "requirements.txt")[0]) config["requires"] = ["setuptools", "wheel"] + config["max-python-version"] = None # TODO + config["min-python-version"] = None # TODO if config["conda_extras"] in (["none"], ["all"]): config["extras"] = config["conda_extras"][0]