From 9a8a55d3bf6e19a11921694021f97064a535368c Mon Sep 17 00:00:00 2001 From: Charlles Abreu Date: Wed, 6 Dec 2023 17:10:12 -0500 Subject: [PATCH] Moved conda package to mdtools channel --- .github/workflows/Anaconda.yaml | 4 ++-- README.md | 6 +++--- docs/installation.rst | 6 +++--- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/Anaconda.yaml b/.github/workflows/Anaconda.yaml index 98fbb51..f65ed4b 100644 --- a/.github/workflows/Anaconda.yaml +++ b/.github/workflows/Anaconda.yaml @@ -48,8 +48,8 @@ jobs: outdir=$(mktemp -d) conda mambabuild . --no-anaconda-upload -c conda-forge --output-folder $outdir echo "::endgroup::" - echo "::group::Uploading package to craabreu conda channel" + echo "::group::Uploading package to mdtools conda channel" PACKAGE=$(find $outdir -name *.tar.bz2 | head -1) export ANACONDA_API_TOKEN=${{ secrets.ANACONDA_TOKEN }} - anaconda upload --user craabreu --force --label main $PACKAGE + anaconda upload --user mdtools --force --label main $PACKAGE echo "::endgroup::" diff --git a/README.md b/README.md index bdb1b35..c1ac05c 100644 --- a/README.md +++ b/README.md @@ -87,17 +87,17 @@ the `ufedmm.cvpack` module. ### Installation and Usage UFEDMM is available as a conda package installable from the -[craabreu](https://anaconda.org/craabreu) channel. +[mdtools](https://anaconda.org/mdtools) conda channel. To install it, either run: ```bash - conda install -c conda-forge -c craabreu ufedmm + conda install -c conda-forge -c mdtools ufedmm ``` Or: ```bash - mamba install -c conda-forge -c craabreu ufedmm + mamba install -c mdtools ufedmm ``` To use UFEDMM in your own Python script or Jupyter notebook, import it as follows: diff --git a/docs/installation.rst b/docs/installation.rst index 0e060ee..d9fc13c 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -3,18 +3,18 @@ Installation ============ UFEDMM is available as a conda package installable from the -[craabreu](https://anaconda.org/craabreu) channel. +[mdtools](https://anaconda.org/mdtools) channel. To install it, either run: .. code-block:: bash - conda install -c conda-forge -c craabreu ufedmm + conda install -c conda-forge -c mdtools ufedmm Or: .. code-block:: bash - mamba install -c conda-forge -c craabreu ufedmm + mamba install -c mdtools ufedmm To use UFEDMM in your own Python script or Jupyter notebook, import it as follows: