From 4173042f9c0f4d534ce4ab315959c9e962ae8125 Mon Sep 17 00:00:00 2001 From: Patrick Avery Date: Thu, 19 Oct 2023 10:18:22 -0500 Subject: [PATCH] Remove "cjh1" channel from packaging Signed-off-by: Patrick Avery --- packaging/package.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/packaging/package.py b/packaging/package.py index 80934fe98..4c9086a7e 100644 --- a/packaging/package.py +++ b/packaging/package.py @@ -102,8 +102,8 @@ def build_conda_pack(base_path, tmp, hexrd_package_channel, hexrdgui_output_fold # First build the hexrdgui package recipe_path = str(base_path / '..' / 'conda.recipe') config = Config() - config.channel = ['cjh1', 'conda-forge'] - config.channel_urls = ['cjh1', 'conda-forge'] + config.channel = ['conda-forge'] + config.channel_urls = ['conda-forge'] config.override_channels = True if hexrdgui_output_folder is not None: @@ -158,7 +158,6 @@ def build_conda_pack(base_path, tmp, hexrd_package_channel, hexrdgui_output_fold '--override-channels', '--channel', hexrdgui_output_folder_uri, '--channel', hexrd_package_channel, - '--channel', 'cjh1', '--channel', 'conda-forge', f'hexrd=={hexrd_version}', 'hexrdgui'