Skip to content

Commit

Permalink
Rename conda config to variant (#1817)
Browse files Browse the repository at this point in the history
The file was previously renamed in commit 381f852
  • Loading branch information
IsabelParedes authored Jan 30, 2025
1 parent ec084c2 commit d4fbd27
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions pixi.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,45 +19,45 @@ curl = "*"

[feature.feature_rattler_build.tasks.build-emscripten-compiler-pkg]
cmd = [
"rattler-build","build",
"rattler-build","build",
# format
"--package-format", "tar-bz2",
# channels
"-c", "https://repo.prefix.dev/emscripten-forge-dev",
"-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
"-c", "https://repo.prefix.dev/emscripten-forge-dev",
"-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
"-c", "https://repo.prefix.dev/emscripten-forge-dev",
"-c", "microsoft",
"-c", "conda-forge",
"--skip-existing", "all",
"-m", "conda_build_config.yaml",
"-m", "variant.yaml",
"--recipe",
"recipes/recipes/pytester"
]
Expand All @@ -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
Expand All @@ -78,21 +78,21 @@ 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
"-c", "https://repo.prefix.dev/emscripten-forge-dev",
"-c", "microsoft",
"-c", "conda-forge",
"--skip-existing", "all",
"-m", "conda_build_config.yaml",
"-m", "variant.yaml",
"--recipe"
]

Expand Down

0 comments on commit d4fbd27

Please sign in to comment.