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
20 changes: 10 additions & 10 deletions .github/workflows/gh-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ defaults:
shell: bash -l {0}

env:
MDANALYSIS_DEVELOP_VERSION: "2.8.0-dev0"
MDANALYSIS_LATEST_RELEASE: "2.7.0"
MDANALYSIS_PREVIOUS_RELEASE: "2.6.1"
MDANALYSIS_DEVELOP_VERSION: "2.11.0-dev0"
MDANALYSIS_LATEST_RELEASE: "2.10.0"
MDANALYSIS_PREVIOUS_RELEASE: "2.9.0"

jobs:
gen-python-matrix:
Expand All @@ -39,7 +39,7 @@ jobs:
oldest-python: ${{ steps.get-compatible-python.outputs.oldest-python }}
stable-python: ${{ steps.get-compatible-python.outputs.stable-python }}
steps:
- uses: actions/setup-python@v4
- uses: actions/setup-python@v6
with:
python-version: "3.11"

Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:
mdanalysis-version: "latest"

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v6

- id: environment-setup
run: |
Expand Down Expand Up @@ -111,7 +111,7 @@ jobs:

- name: Install conda Python ${{ matrix.python-version }}
if: ${{ matrix.installer == 'conda' }}
uses: conda-incubator/setup-miniconda@v3
uses: conda-incubator/setup-miniconda@v4
with:
python-version: ${{ matrix.python-version }}
add-pip-as-python-dependency: true
Expand All @@ -123,7 +123,7 @@ jobs:

- name: Setup Python ${{ matrix.python-version }}
if: ${{ matrix.installer == 'pip' }}
uses: actions/setup-python@v4
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}

Expand Down Expand Up @@ -162,7 +162,7 @@ jobs:
needs: gen-python-matrix
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v6

- name: Install mamba Python ${{ needs.gen-python-matrix.outputs.stable-python }}
uses: mamba-org/provision-with-micromamba@main
Expand Down Expand Up @@ -194,10 +194,10 @@ jobs:
needs: gen-python-matrix
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v6

- name: Setup Python ${{ needs.gen-python-matrix.outputs.stable-python }}
uses: actions/setup-python@v3
uses: actions/setup-python@v6
with:
python-version: ${{ needs.gen-python-matrix.outputs.stable-python }}

Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ Examples:
The below workflow installs the develop version of MDAnalysis and MDAnalysisTests, using pip.
```yaml
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v6

- uses: actions/setup-python@v4
- uses: actions/setup-python@v6
with:
python-version: 3.9
python-version: 3.11

- uses: MDAnalysis/install-mdanalysis@main
id: install-mdanalysis
Expand All @@ -36,12 +36,12 @@ Alternatively, you could use conda to install version 2.1.0:

```yaml
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v6

- name: Install conda Python 3.9
uses: conda-incubator/setup-miniconda@v2
- name: Install conda Python 3.11
uses: conda-incubator/setup-miniconda@v4
with:
python-version: 3.9
python-version: 3.11
add-pip-as-python-dependency: true
architecture: x64
mamba-version: "*"
Expand All @@ -52,7 +52,7 @@ steps:
- uses: MDAnalysis/install-mdanalysis@main
id: install-mdanalysis
with:
version: "2.1.0"
version: "2.10.0"
install-tests: true
installer: conda # or mamba
shell: bash -l {0}
Expand Down