From 1262425d7b6616d5d6b1a708cbe314164f517ada Mon Sep 17 00:00:00 2001 From: "H. Vetinari" Date: Sat, 14 Sep 2024 18:05:20 +0200 Subject: [PATCH] MNT: Re-rendered with conda-build 24.7.1, conda-smithy 3.39.1, and conda-forge-pinning 2024.09.14.12.41.26 --- .ci_support/linux_64_.yaml | 2 +- .ci_support/linux_aarch64_.yaml | 2 +- .ci_support/linux_ppc64le_.yaml | 2 +- .ci_support/osx_64_.yaml | 2 +- .ci_support/osx_arm64_.yaml | 2 +- .ci_support/win_64_.yaml | 2 +- README.md | 16 ++++++++-------- 7 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.ci_support/linux_64_.yaml b/.ci_support/linux_64_.yaml index 3c07aedd..d9419b6e 100644 --- a/.ci_support/linux_64_.yaml +++ b/.ci_support/linux_64_.yaml @@ -7,7 +7,7 @@ cdt_name: channel_sources: - conda-forge channel_targets: -- conda-forge llvm_rc +- conda-forge main cxx_compiler: - gxx cxx_compiler_version: diff --git a/.ci_support/linux_aarch64_.yaml b/.ci_support/linux_aarch64_.yaml index a38e11c5..cada61e0 100644 --- a/.ci_support/linux_aarch64_.yaml +++ b/.ci_support/linux_aarch64_.yaml @@ -11,7 +11,7 @@ cdt_name: channel_sources: - conda-forge channel_targets: -- conda-forge llvm_rc +- conda-forge main cxx_compiler: - gxx cxx_compiler_version: diff --git a/.ci_support/linux_ppc64le_.yaml b/.ci_support/linux_ppc64le_.yaml index 189ff2b4..bdbb8bec 100644 --- a/.ci_support/linux_ppc64le_.yaml +++ b/.ci_support/linux_ppc64le_.yaml @@ -7,7 +7,7 @@ cdt_name: channel_sources: - conda-forge channel_targets: -- conda-forge llvm_rc +- conda-forge main cxx_compiler: - gxx cxx_compiler_version: diff --git a/.ci_support/osx_64_.yaml b/.ci_support/osx_64_.yaml index 2e68dc0e..13d9924c 100644 --- a/.ci_support/osx_64_.yaml +++ b/.ci_support/osx_64_.yaml @@ -9,7 +9,7 @@ c_stdlib_version: channel_sources: - conda-forge channel_targets: -- conda-forge llvm_rc +- conda-forge main cxx_compiler: - clang_bootstrap cxx_compiler_version: diff --git a/.ci_support/osx_arm64_.yaml b/.ci_support/osx_arm64_.yaml index 862f7cc3..e283bc5a 100644 --- a/.ci_support/osx_arm64_.yaml +++ b/.ci_support/osx_arm64_.yaml @@ -9,7 +9,7 @@ c_stdlib_version: channel_sources: - conda-forge channel_targets: -- conda-forge llvm_rc +- conda-forge main cxx_compiler: - clang_bootstrap cxx_compiler_version: diff --git a/.ci_support/win_64_.yaml b/.ci_support/win_64_.yaml index d40ca485..e0d0cf6d 100644 --- a/.ci_support/win_64_.yaml +++ b/.ci_support/win_64_.yaml @@ -3,7 +3,7 @@ c_stdlib: channel_sources: - conda-forge channel_targets: -- conda-forge llvm_rc +- conda-forge main cxx_compiler: - vs2019 libxml2: diff --git a/README.md b/README.md index 13a898d1..ce0441e3 100644 --- a/README.md +++ b/README.md @@ -94,14 +94,14 @@ Current release info Installing llvmdev ================== -Installing `llvmdev` from the `conda-forge/label/llvm_rc` channel can be achieved by adding `conda-forge/label/llvm_rc` to your channels with: +Installing `llvmdev` from the `conda-forge` channel can be achieved by adding `conda-forge` to your channels with: ``` -conda config --add channels conda-forge/label/llvm_rc +conda config --add channels conda-forge conda config --set channel_priority strict ``` -Once the `conda-forge/label/llvm_rc` channel has been enabled, `libllvm-c19, libllvm19, lit, llvm, llvm-tools, llvm-tools-19, llvmdev` can be installed with `conda`: +Once the `conda-forge` channel has been enabled, `libllvm-c19, libllvm19, lit, llvm, llvm-tools, llvm-tools-19, llvmdev` can be installed with `conda`: ``` conda install libllvm-c19 libllvm19 lit llvm llvm-tools llvm-tools-19 llvmdev @@ -116,26 +116,26 @@ mamba install libllvm-c19 libllvm19 lit llvm llvm-tools llvm-tools-19 llvmdev It is possible to list all of the versions of `libllvm-c19` available on your platform with `conda`: ``` -conda search libllvm-c19 --channel conda-forge/label/llvm_rc +conda search libllvm-c19 --channel conda-forge ``` or with `mamba`: ``` -mamba search libllvm-c19 --channel conda-forge/label/llvm_rc +mamba search libllvm-c19 --channel conda-forge ``` Alternatively, `mamba repoquery` may provide more information: ``` # Search all versions available on your platform: -mamba repoquery search libllvm-c19 --channel conda-forge/label/llvm_rc +mamba repoquery search libllvm-c19 --channel conda-forge # List packages depending on `libllvm-c19`: -mamba repoquery whoneeds libllvm-c19 --channel conda-forge/label/llvm_rc +mamba repoquery whoneeds libllvm-c19 --channel conda-forge # List dependencies of `libllvm-c19`: -mamba repoquery depends libllvm-c19 --channel conda-forge/label/llvm_rc +mamba repoquery depends libllvm-c19 --channel conda-forge ```