From 8657568a34aac6862ac9c36b1b5686278479c5f8 Mon Sep 17 00:00:00 2001 From: Fiona Naughton Date: Mon, 11 Nov 2024 23:33:02 +1100 Subject: [PATCH 1/4] Update gh-ci.yaml --- .github/workflows/gh-ci.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/gh-ci.yaml b/.github/workflows/gh-ci.yaml index 47d67bb..22cb6f3 100644 --- a/.github/workflows/gh-ci.yaml +++ b/.github/workflows/gh-ci.yaml @@ -30,13 +30,13 @@ jobs: fail-fast: false matrix: os: [macOS-latest, ubuntu-latest, windows-latest] - python-version: ["3.10", "3.11", "3.12"] + python-version: ["3.10", "3.11", "3.12", "3.13"] mdanalysis-version: ["latest", "develop"] # Manually exclude any combinations of the test matrix that can't be run exclude: - # The latest release of MDAnalysis only supports up to Python 3.11 - # so we exclude 3.12 from the test matrix (issue #37) - - python-version: "3.12" + # The latest release of MDAnalysis only supports up to Python 3.12 + # so we exclude 3.13 from the test matrix + - python-version: "3.13" mdanalysis-version: "latest" steps: From 2b13fb1f1d29cd6cf7b0e0ec3a6f4eed5354793a Mon Sep 17 00:00:00 2001 From: Fiona Naughton Date: Mon, 11 Nov 2024 23:33:42 +1100 Subject: [PATCH 2/4] Update pyproject.toml --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index d7c3c31..7ec5c04 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -25,6 +25,7 @@ classifiers = [ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Topic :: Scientific/Engineering", "Topic :: Software Development :: Libraries :: Python Modules", ] From 3643c8750c4be1d2938f3b2fbcd9d72a5d277134 Mon Sep 17 00:00:00 2001 From: Fiona Naughton Date: Mon, 11 Nov 2024 23:45:30 +1100 Subject: [PATCH 3/4] Update gh-ci.yaml --- .github/workflows/gh-ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/gh-ci.yaml b/.github/workflows/gh-ci.yaml index 22cb6f3..2dc1b6d 100644 --- a/.github/workflows/gh-ci.yaml +++ b/.github/workflows/gh-ci.yaml @@ -57,7 +57,7 @@ jobs: environment-file: devtools/conda-envs/test_env.yaml add-pip-as-python-dependency: true - miniforge-variant: Mambaforge + miniforge-version: "latest" use-mamba: true channels: conda-forge, defaults From 423ca77a34a9eb175a945712c394da2b45c6a163 Mon Sep 17 00:00:00 2001 From: Fiona Naughton Date: Mon, 11 Nov 2024 23:53:00 +1100 Subject: [PATCH 4/4] try change minicondav3 to v2 --- .github/workflows/gh-ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/gh-ci.yaml b/.github/workflows/gh-ci.yaml index 2dc1b6d..329e101 100644 --- a/.github/workflows/gh-ci.yaml +++ b/.github/workflows/gh-ci.yaml @@ -51,7 +51,7 @@ jobs: # More info on options: https://github.com/conda-incubator/setup-miniconda - name: Install conda dependencies - uses: conda-incubator/setup-miniconda@v3 + uses: conda-incubator/setup-miniconda@v2 with: python-version: ${{ matrix.python-version }} environment-file: devtools/conda-envs/test_env.yaml