From d4fbd27e18ff2cfba13bce2a2174a8d3ced9b1e0 Mon Sep 17 00:00:00 2001 From: Isabel Paredes Date: Thu, 30 Jan 2025 15:18:02 +0100 Subject: [PATCH] Rename conda config to variant (#1817) The file was previously renamed in commit 381f852 --- pixi.toml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/pixi.toml b/pixi.toml index ff7694371..294df9472 100644 --- a/pixi.toml +++ b/pixi.toml @@ -19,7 +19,7 @@ curl = "*" [feature.feature_rattler_build.tasks.build-emscripten-compiler-pkg] cmd = [ - "rattler-build","build", + "rattler-build","build", # format "--package-format", "tar-bz2", # channels @@ -27,14 +27,14 @@ cmd = [ "-c", "microsoft", "-c", "conda-forge", "--skip-existing", "all", - "-m", "conda_build_config.yaml", + "-m", "variant.yaml", "--recipe", "recipes/recipes/emscripten_emscripten-wasm32" ] [feature.feature_rattler_build.tasks.build-cross-python-pkg] cmd = [ - "rattler-build","build", + "rattler-build","build", # format "--package-format", "tar-bz2", # channels @@ -42,14 +42,14 @@ cmd = [ "-c", "microsoft", "-c", "conda-forge", "--skip-existing", "all", - "-m", "conda_build_config.yaml", + "-m", "variant.yaml", "--recipe", "recipes/recipes/cross-python_emscripten-wasm32" ] [feature.feature_rattler_build.tasks.build-pytester-pkg] cmd = [ - "rattler-build","build", + "rattler-build","build", # format "--package-format", "tar-bz2", # channels @@ -57,7 +57,7 @@ cmd = [ "-c", "microsoft", "-c", "conda-forge", "--skip-existing", "all", - "-m", "conda_build_config.yaml", + "-m", "variant.yaml", "--recipe", "recipes/recipes/pytester" ] @@ -69,7 +69,7 @@ depends_on = ["build-emscripten-compiler-pkg", "build-cross-python-pkg", "build- [feature.feature_rattler_build.tasks.build-emscripten-wasm32-pkg] cmd = [ - "rattler-build","build", + "rattler-build","build", # format "--package-format", "tar-bz2", # channels @@ -78,13 +78,13 @@ cmd = [ "-c", "conda-forge", "--target-platform", "emscripten-wasm32", "--skip-existing", "all", - "-m", "conda_build_config.yaml", + "-m", "variant.yaml", "--recipe" ] [feature.feature_rattler_build.tasks.build-pkg] cmd = [ - "rattler-build","build", + "rattler-build","build", # format "--package-format", "tar-bz2", # channels @@ -92,7 +92,7 @@ cmd = [ "-c", "microsoft", "-c", "conda-forge", "--skip-existing", "all", - "-m", "conda_build_config.yaml", + "-m", "variant.yaml", "--recipe" ]