Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 5 additions & 8 deletions .github/workflows/gh-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -102,10 +102,9 @@ jobs:
if: ${{ matrix.installer == 'micromamba' }}
uses: mamba-org/setup-micromamba@v3
with:
environment-file: false
environment-name: mda
create-args: |
python==${{ matrix.python-version }}
create-args: >-
python=${{ matrix.python-version }}
pip

- name: Install conda Python ${{ matrix.python-version }}
Expand Down Expand Up @@ -164,14 +163,12 @@ jobs:
- uses: actions/checkout@v6

- name: Install mamba Python ${{ needs.gen-python-matrix.outputs.stable-python }}
uses: mamba-org/provision-with-micromamba@main
uses: mamba-org/setup-micromamba@v3
with:
environment-file: ./.github/test-environment.yaml
environment-name: mda
extra-specs: |
python==${{ needs.gen-python-matrix.outputs.stable-python }}
create-args: >-
python=${{ needs.gen-python-matrix.outputs.stable-python }}
pip
channels: conda-forge

- name: Install
uses: ./
Expand Down
4 changes: 2 additions & 2 deletions action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,9 @@ runs:
_PACKAGE_SUFFIX="==${{ inputs.version }}"
fi

_INSTALL_LINE="MDAnalysis${_PACKAGE_SUFFIX}"
_INSTALL_LINE="mdanalysis${_PACKAGE_SUFFIX}"
if [[ "${{ inputs.install-tests }}" == "true" ]] ; then
_INSTALL_LINE="${_INSTALL_LINE} MDAnalysisTests${_PACKAGE_SUFFIX}"
_INSTALL_LINE="${_INSTALL_LINE} mdanalysistests${_PACKAGE_SUFFIX}"
fi

# special case develop
Expand Down
Loading