diff --git a/.azure-pipelines/azure-pipelines-linux.yml b/.azure-pipelines/azure-pipelines-linux.yml index b794eb6..84b53e6 100755 --- a/.azure-pipelines/azure-pipelines-linux.yml +++ b/.azure-pipelines/azure-pipelines-linux.yml @@ -35,7 +35,7 @@ jobs: export sha=$(Build.SourceVersion) export GIT_BRANCH=$BUILD_SOURCEBRANCHNAME export FEEDSTOCK_NAME=$(basename ${BUILD_REPOSITORY_NAME}) - export UPLOAD_ON_BRANCH="main" + export UPLOAD_ON_BRANCH="nightly-build" if [[ "${BUILD_REASON:-}" == "PullRequest" ]]; then export IS_PR_BUILD="True" else diff --git a/.azure-pipelines/azure-pipelines-osx.yml b/.azure-pipelines/azure-pipelines-osx.yml index ab16941..bdb1911 100755 --- a/.azure-pipelines/azure-pipelines-osx.yml +++ b/.azure-pipelines/azure-pipelines-osx.yml @@ -27,7 +27,7 @@ jobs: export OSX_FORCE_SDK_DOWNLOAD="1" export GIT_BRANCH=$BUILD_SOURCEBRANCHNAME export FEEDSTOCK_NAME=$(basename ${BUILD_REPOSITORY_NAME}) - export UPLOAD_ON_BRANCH="main" + export UPLOAD_ON_BRANCH="nightly-build" if [[ "${BUILD_REASON:-}" == "PullRequest" ]]; then export IS_PR_BUILD="True" else diff --git a/.ci_support/linux_64_fmt11spdlog1.14.yaml b/.ci_support/linux_64_fmt11spdlog1.14.yaml index 9a28ad8..1a6772f 100644 --- a/.ci_support/linux_64_fmt11spdlog1.14.yaml +++ b/.ci_support/linux_64_fmt11spdlog1.14.yaml @@ -11,7 +11,7 @@ cdt_name: channel_sources: - conda-forge,tiledb channel_targets: -- tiledb main +- tiledb nightlies cxx_compiler: - gxx cxx_compiler_version: @@ -45,6 +45,8 @@ spdlog: - '1.14' target_platform: - linux-64 +tiledb: +- '2.26' zip_keys: - - c_compiler_version - cxx_compiler_version diff --git a/.ci_support/linux_64_fmt9spdlog1.11.yaml b/.ci_support/linux_64_fmt9spdlog1.11.yaml index d1ac445..468abc1 100644 --- a/.ci_support/linux_64_fmt9spdlog1.11.yaml +++ b/.ci_support/linux_64_fmt9spdlog1.11.yaml @@ -11,7 +11,7 @@ cdt_name: channel_sources: - tiledb/label/for-cloud,conda-forge,tiledb channel_targets: -- tiledb main +- tiledb nightlies cxx_compiler: - gxx cxx_compiler_version: @@ -45,6 +45,8 @@ spdlog: - '1.11' target_platform: - linux-64 +tiledb: +- '2.26' zip_keys: - - c_compiler_version - cxx_compiler_version diff --git a/.ci_support/osx_64_.yaml b/.ci_support/osx_64_.yaml index 1f6e4df..d003a1d 100644 --- a/.ci_support/osx_64_.yaml +++ b/.ci_support/osx_64_.yaml @@ -13,7 +13,7 @@ c_stdlib_version: channel_sources: - conda-forge,tiledb channel_targets: -- tiledb main +- tiledb nightlies cxx_compiler: - clangxx cxx_compiler_version: @@ -45,6 +45,8 @@ spdlog: - '1.14' target_platform: - osx-64 +tiledb: +- '2.26' zip_keys: - - c_compiler_version - cxx_compiler_version diff --git a/.ci_support/osx_arm64_.yaml b/.ci_support/osx_arm64_.yaml index 3b54373..6b436f4 100644 --- a/.ci_support/osx_arm64_.yaml +++ b/.ci_support/osx_arm64_.yaml @@ -13,7 +13,7 @@ c_stdlib_version: channel_sources: - conda-forge,tiledb channel_targets: -- tiledb main +- tiledb nightlies cxx_compiler: - clangxx cxx_compiler_version: @@ -45,6 +45,8 @@ spdlog: - '1.14' target_platform: - osx-arm64 +tiledb: +- '2.26' zip_keys: - - c_compiler_version - cxx_compiler_version diff --git a/README.md b/README.md index 35ac1df..201f0e6 100644 --- a/README.md +++ b/README.md @@ -129,14 +129,14 @@ Current release info Installing tiledbsoma ===================== -Installing `tiledbsoma` from the `tiledb` channel can be achieved by adding `tiledb` to your channels with: +Installing `tiledbsoma` from the `tiledb/label/nightlies` channel can be achieved by adding `tiledb/label/nightlies` to your channels with: ``` -conda config --add channels tiledb +conda config --add channels tiledb/label/nightlies conda config --set channel_priority strict ``` -Once the `tiledb` channel has been enabled, `libtiledbsoma, r-tiledbsoma, tiledbsoma-py` can be installed with `conda`: +Once the `tiledb/label/nightlies` channel has been enabled, `libtiledbsoma, r-tiledbsoma, tiledbsoma-py` can be installed with `conda`: ``` conda install libtiledbsoma r-tiledbsoma tiledbsoma-py @@ -151,26 +151,26 @@ mamba install libtiledbsoma r-tiledbsoma tiledbsoma-py It is possible to list all of the versions of `libtiledbsoma` available on your platform with `conda`: ``` -conda search libtiledbsoma --channel tiledb +conda search libtiledbsoma --channel tiledb/label/nightlies ``` or with `mamba`: ``` -mamba search libtiledbsoma --channel tiledb +mamba search libtiledbsoma --channel tiledb/label/nightlies ``` Alternatively, `mamba repoquery` may provide more information: ``` # Search all versions available on your platform: -mamba repoquery search libtiledbsoma --channel tiledb +mamba repoquery search libtiledbsoma --channel tiledb/label/nightlies # List packages depending on `libtiledbsoma`: -mamba repoquery whoneeds libtiledbsoma --channel tiledb +mamba repoquery whoneeds libtiledbsoma --channel tiledb/label/nightlies # List dependencies of `libtiledbsoma`: -mamba repoquery depends libtiledbsoma --channel tiledb +mamba repoquery depends libtiledbsoma --channel tiledb/label/nightlies ```