diff --git a/.ci_support/linux_64_.yaml b/.ci_support/linux_64_.yaml index ac4a5c4..5eaf4c0 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 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 30683f6..779c4ef 100644 --- a/.ci_support/osx_64_.yaml +++ b/.ci_support/osx_64_.yaml @@ -7,7 +7,7 @@ c_compiler_version: channel_sources: - conda-forge channel_targets: -- conda-forge rc +- conda-forge main cxx_compiler: - clangxx cxx_compiler_version: diff --git a/.ci_support/osx_arm64_.yaml b/.ci_support/osx_arm64_.yaml index 7e94dd1..b0d7ef4 100644 --- a/.ci_support/osx_arm64_.yaml +++ b/.ci_support/osx_arm64_.yaml @@ -7,7 +7,7 @@ c_compiler_version: channel_sources: - conda-forge channel_targets: -- conda-forge rc +- conda-forge main cxx_compiler: - clangxx cxx_compiler_version: diff --git a/.ci_support/win_64_.yaml b/.ci_support/win_64_.yaml index fb4a2ca..3aa5d1d 100644 --- a/.ci_support/win_64_.yaml +++ b/.ci_support/win_64_.yaml @@ -1,7 +1,7 @@ channel_sources: - conda-forge channel_targets: -- conda-forge rc +- conda-forge main openblas: - 0.3.* target_platform: diff --git a/README.md b/README.md index cbd7414..4504b9b 100644 --- a/README.md +++ b/README.md @@ -78,14 +78,14 @@ Current release info Installing openfast =================== -Installing `openfast` from the `conda-forge/label/rc` channel can be achieved by adding `conda-forge/label/rc` to your channels with: +Installing `openfast` from the `conda-forge` channel can be achieved by adding `conda-forge` to your channels with: ``` -conda config --add channels conda-forge/label/rc +conda config --add channels conda-forge conda config --set channel_priority strict ``` -Once the `conda-forge/label/rc` channel has been enabled, `openfast` can be installed with `conda`: +Once the `conda-forge` channel has been enabled, `openfast` can be installed with `conda`: ``` conda install openfast @@ -100,26 +100,26 @@ mamba install openfast It is possible to list all of the versions of `openfast` available on your platform with `conda`: ``` -conda search openfast --channel conda-forge/label/rc +conda search openfast --channel conda-forge ``` or with `mamba`: ``` -mamba search openfast --channel conda-forge/label/rc +mamba search openfast --channel conda-forge ``` Alternatively, `mamba repoquery` may provide more information: ``` # Search all versions available on your platform: -mamba repoquery search openfast --channel conda-forge/label/rc +mamba repoquery search openfast --channel conda-forge # List packages depending on `openfast`: -mamba repoquery whoneeds openfast --channel conda-forge/label/rc +mamba repoquery whoneeds openfast --channel conda-forge # List dependencies of `openfast`: -mamba repoquery depends openfast --channel conda-forge/label/rc +mamba repoquery depends openfast --channel conda-forge ``` diff --git a/recipe/conda_build_config.yaml b/recipe/conda_build_config.yaml deleted file mode 100644 index 6cb0475..0000000 --- a/recipe/conda_build_config.yaml +++ /dev/null @@ -1,2 +0,0 @@ -channel_targets: - - conda-forge rc