From 3b4beebe306756c92b3ddc6faa28f1e0fc17c49d Mon Sep 17 00:00:00 2001 From: Javier Gonzalez Date: Mon, 18 Dec 2023 18:26:04 -0500 Subject: [PATCH] Cleanup in build environment: - do not specify python version in environment file, as it will be specified in workflow - remove conda-forge:: from env - remove ska_helpers and testr from base build environment (otherwise the build fails when building them from scratch) --- build-environment.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/build-environment.yml b/build-environment.yml index fd427858..017e65af 100644 --- a/build-environment.yml +++ b/build-environment.yml @@ -1,8 +1,9 @@ channels: - conda-forge dependencies: - - python=3.10 - - conda-forge::libarchive # libarchive from defaults is not good for mamba + # note that ska3 packages should not be here, because this is used to build all ska3 packages + - python # python version specified in the workflow + - libarchive # libarchive from defaults might not be good for mamba - mamba - setuptools_scm - gitpython @@ -11,5 +12,3 @@ dependencies: - pyyaml - numpy - packaging - - ska_helpers - - testr