From 5c1af90441d7c624e6b9bcd610a49696e08ee80c Mon Sep 17 00:00:00 2001 From: Aidan Heerdegen Date: Fri, 16 Aug 2024 11:29:28 +1000 Subject: [PATCH] Replace python interpreter with plain text --- conda/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conda/meta.yaml b/conda/meta.yaml index 5fec4f6..86aa42a 100644 --- a/conda/meta.yaml +++ b/conda/meta.yaml @@ -11,7 +11,7 @@ package: build: noarch: python number: 0 - script: "{{ python }} -m pip install . -vv" + script: "python3 -m pip install . -vv" entry_points: {% for name, script in project.get('scripts', {}).items() %} - {{ name }} = {{ script }}