Skip to content

Commit

Permalink
Moved conda package to mdtools channel
Browse files Browse the repository at this point in the history
  • Loading branch information
craabreu committed Dec 6, 2023
1 parent 8af0230 commit 9a8a55d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/Anaconda.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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::"
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
6 changes: 3 additions & 3 deletions docs/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down

0 comments on commit 9a8a55d

Please sign in to comment.