From 4e8438ba797453017ef1c5eb694656917963e341 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Sep 2025 08:12:56 +0000 Subject: [PATCH 01/12] Bump actions/setup-python from 5 to 6 Bumps [actions/setup-python](https://github.com/actions/setup-python) from 5 to 6. - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/cff-validator.yml | 2 +- .github/workflows/codeql-analysis.yml | 2 +- .github/workflows/tests.yml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/cff-validator.yml b/.github/workflows/cff-validator.yml index d5265ee0..dc29b183 100644 --- a/.github/workflows/cff-validator.yml +++ b/.github/workflows/cff-validator.yml @@ -29,7 +29,7 @@ jobs: - name: "Checkout repository" uses: "actions/checkout@v4" - name: "Set up Python ${{ matrix.python-version }}" - uses: "actions/setup-python@v5" + uses: "actions/setup-python@v6" with: python-version: "${{ matrix.python-version }}" - name: "Export ${HOME}/.local/bin to ${PATH}" diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index b73fbb28..28de4d95 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -29,7 +29,7 @@ jobs: - name: "Checkout repository" uses: "actions/checkout@v4" - name: "Set up Python ${{ matrix.python-version }}" - uses: "actions/setup-python@v5" + uses: "actions/setup-python@v6" with: python-version: "${{ matrix.python-version }}" - name: "Export ${HOME}/.local/bin to ${PATH}" diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 07f7dea3..18b90b72 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -39,7 +39,7 @@ jobs: - name: "Checkout repository" uses: "actions/checkout@v4" - name: "Set up Python ${{ matrix.python-version }}" - uses: "actions/setup-python@v5" + uses: "actions/setup-python@v6" with: python-version: "${{ matrix.python-version }}" - name: "Export ${HOME}/.local/bin to ${PATH}" @@ -178,7 +178,7 @@ jobs: - name: "Checkout repository" uses: "actions/checkout@v4" - name: "Set up Python ${{ matrix.python-version }}" - uses: "actions/setup-python@v5" + uses: "actions/setup-python@v6" with: python-version: "${{ matrix.python-version }}" - name: "Export ${HOME}/.local/bin to ${PATH}" From dfb1d9fc58879c56c6686a839ba6b17662a7dfe8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Oct 2025 08:18:31 +0000 Subject: [PATCH 02/12] Bump github/codeql-action from 3 to 4 Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3 to 4. - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/github/codeql-action/compare/v3...v4) --- updated-dependencies: - dependency-name: github/codeql-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/codeql-analysis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 28de4d95..8a4676fb 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -72,7 +72,7 @@ jobs: # executable that includes the dependencies. echo "CODEQL_PYTHON=$(which python)" >> ${GITHUB_ENV} - name: "Initialize CodeQL" - uses: "github/codeql-action/init@v3" + uses: "github/codeql-action/init@v4" with: languages: "python" # Override the default behavior so that the action doesn't @@ -80,4 +80,4 @@ jobs: # https://docs.github.com/en/code-security/secure-coding/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#analyzing-python-dependencies setup-python-dependencies: false - name: "Perform CodeQL Analysis" - uses: "github/codeql-action/analyze@v3" + uses: "github/codeql-action/analyze@v4" From a74d615381e19272753a3d1f11da6da3ce404d1e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Nov 2025 08:02:31 +0000 Subject: [PATCH 03/12] Bump actions/checkout from 4 to 6 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/cff-validator.yml | 2 +- .github/workflows/codeql-analysis.yml | 2 +- .github/workflows/tests.yml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/cff-validator.yml b/.github/workflows/cff-validator.yml index dc29b183..326be52d 100644 --- a/.github/workflows/cff-validator.yml +++ b/.github/workflows/cff-validator.yml @@ -27,7 +27,7 @@ jobs: runs-on: "${{ matrix.os }}" steps: - name: "Checkout repository" - uses: "actions/checkout@v4" + uses: "actions/checkout@v6" - name: "Set up Python ${{ matrix.python-version }}" uses: "actions/setup-python@v6" with: diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 8a4676fb..eda7342d 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -27,7 +27,7 @@ jobs: security-events: "write" steps: - name: "Checkout repository" - uses: "actions/checkout@v4" + uses: "actions/checkout@v6" - name: "Set up Python ${{ matrix.python-version }}" uses: "actions/setup-python@v6" with: diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 18b90b72..60f498c9 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -37,7 +37,7 @@ jobs: runs-on: "${{ matrix.os }}" steps: - name: "Checkout repository" - uses: "actions/checkout@v4" + uses: "actions/checkout@v6" - name: "Set up Python ${{ matrix.python-version }}" uses: "actions/setup-python@v6" with: @@ -176,7 +176,7 @@ jobs: runs-on: "${{ matrix.os }}" steps: - name: "Checkout repository" - uses: "actions/checkout@v4" + uses: "actions/checkout@v6" - name: "Set up Python ${{ matrix.python-version }}" uses: "actions/setup-python@v6" with: From 802b8384c6b40e181c44ef316d04457b528235ee Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 08:01:26 +0000 Subject: [PATCH 04/12] Bump actions/cache from 4 to 5 Bumps [actions/cache](https://github.com/actions/cache) from 4 to 5. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/cff-validator.yml | 2 +- .github/workflows/codeql-analysis.yml | 2 +- .github/workflows/tests.yml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/cff-validator.yml b/.github/workflows/cff-validator.yml index 326be52d..992b089e 100644 --- a/.github/workflows/cff-validator.yml +++ b/.github/workflows/cff-validator.yml @@ -44,7 +44,7 @@ jobs: python -m pip install --user --upgrade pip echo "dir=$(pip cache dir)" >> ${GITHUB_OUTPUT} - name: "Create/Restore cache" - uses: "actions/cache@v4" + uses: "actions/cache@v5" with: path: "${{ steps.pip-cache.outputs.dir }}/**" key: | diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index eda7342d..b05785cd 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -44,7 +44,7 @@ jobs: python -m pip install --user --upgrade pip echo "dir=$(pip cache dir)" >> ${GITHUB_OUTPUT} - name: "Create/Restore cache" - uses: "actions/cache@v4" + uses: "actions/cache@v5" with: path: "${{ steps.pip-cache.outputs.dir }}/**" key: | diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 60f498c9..a4e42866 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -54,7 +54,7 @@ jobs: python -m pip install --user --upgrade pip echo "dir=$(pip cache dir)" >> ${GITHUB_OUTPUT} - name: "Create/Restore cache" - uses: "actions/cache@v4" + uses: "actions/cache@v5" with: path: "${{ steps.pip-cache.outputs.dir }}/**" key: | @@ -193,7 +193,7 @@ jobs: python -m pip install --user --upgrade pip echo "dir=$(pip cache dir)" >> ${GITHUB_OUTPUT} - name: "Create/Restore cache" - uses: "actions/cache@v4" + uses: "actions/cache@v5" with: path: | ${{ steps.pip-cache.outputs.dir }}/** From 8470bb19b080534f8173921aef34b3202076301b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Dec 2025 09:56:38 +0000 Subject: [PATCH 05/12] Update sphinx requirement from <9.0,>=5.0 to >=5.0,<10.0 in /docs Updates the requirements on [sphinx](https://github.com/sphinx-doc/sphinx) to permit the latest version. - [Release notes](https://github.com/sphinx-doc/sphinx/releases) - [Changelog](https://github.com/sphinx-doc/sphinx/blob/master/CHANGES.rst) - [Commits](https://github.com/sphinx-doc/sphinx/compare/v5.0.0...v9.0.0) --- updated-dependencies: - dependency-name: sphinx dependency-version: 9.0.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- docs/requirements-docs.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/requirements-docs.txt b/docs/requirements-docs.txt index a54dbf10..096561ad 100644 --- a/docs/requirements-docs.txt +++ b/docs/requirements-docs.txt @@ -6,5 +6,5 @@ # on sphinx >=1.6, <6.0 # => The sphix requirement must not be >=6.0 -sphinx >=5.0, <9.0 +sphinx >=5.0, <10.0 sphinx-rtd-theme >=1.0, <3.0 From e6ba3c6039714a7f66f8d6ea2f73508ace11e844 Mon Sep 17 00:00:00 2001 From: andthum <56444687+andthum@users.noreply.github.com> Date: Wed, 18 Mar 2026 21:30:25 +0100 Subject: [PATCH 06/12] [.pre-commit-config.yaml]: Update Hooks Downgrades: * https://github.com/python-jsonschema/check-jsonschema from `0.31.2` to `0.30.0` * https://github.com/PyCQA/bandit from `1.8.3` to `1.7.10` --- .pre-commit-config.yaml | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index d35c6dac..969c6c0b 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -38,6 +38,8 @@ ci: repos: - repo: "https://github.com/pre-commit/pre-commit-hooks" + # Stay at pre-commit-hooks version 5, because pre-commit-hooks drops + # support for Python 3.8 in version 6. Latest 5 version is v5.0.0. rev: "v5.0.0" hooks: ### Git ### @@ -116,7 +118,10 @@ repos: - id: "check-pre-commit-ci-config" - repo: "https://github.com/python-jsonschema/check-jsonschema" - rev: "0.31.2" + # Stay at version 0.30.0 together with jsonschema <=4.18, because + # higher versions require regress>=2024.11.1, but only + # regress <=2024.8.1 seems to support Python 3.8 + rev: "0.30.0" hooks: # Validate Dependabot Config (v2) against the schema provided by # SchemaStore. @@ -186,6 +191,9 @@ repos: - "--color" - repo: "https://github.com/PyCQA/flake8" + # Stay at flake8 version 7.1.2, because higher versions require + # pycodestyle >=2.13.0, but only pycodestyle <=2.12.1 seems to + # support Python 3.8 rev: "7.1.2" hooks: # Lint Python code with Flake8. @@ -208,7 +216,9 @@ repos: - "pep8-naming >=0.1, <1.0" - repo: "https://github.com/PyCQA/bandit" - rev: "1.8.3" + # Stay at bandit version 1.7.10, because bandit drops support for + # Python 3.8 in version 1.8.0. Latest 1.7 version is 1.7.10. + rev: "1.7.10" hooks: # Check code security with bandit. - id: "bandit" @@ -230,6 +240,8 @@ repos: ###################################################################### - repo: "https://github.com/maxwinterstein/shfmt-py" + # Stay at shfmt-py version v3.7.0.1, because shfmt-py drops support + # for Python 3.8 in version v3.11.0.2. rev: "v3.7.0.1" hooks: # Format shell scripts with shfmt. @@ -251,6 +263,8 @@ repos: - "-l" - repo: "https://github.com/shellcheck-py/shellcheck-py" + # Stay at shellcheck-py version v0.10.0.1, because shellcheck-py + # drops support for Python 3.8 in version v0.11.0.1. rev: "v0.10.0.1" hooks: # Lint shell scripts with shellcheck. From 4e541c37a5e6ecf57e3ec4d83f0276bb199379b3 Mon Sep 17 00:00:00 2001 From: andthum <56444687+andthum@users.noreply.github.com> Date: Wed, 18 Mar 2026 21:33:26 +0100 Subject: [PATCH 07/12] [dependabot.yml]: Remove deprecated reviewers configuration * https://github.blog/changelog/2025-04-29-dependabot-reviewers-configuration-option-being-replaced-by-code-owners/ * https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners --- .github/dependabot.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 4819d834..dda4a9e0 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -17,8 +17,6 @@ updates: insecure-external-code-execution: "deny" pull-request-branch-name: separator: "/" - reviewers: - - "andthum" labels: - "dependencies" - "patch" @@ -33,8 +31,6 @@ updates: insecure-external-code-execution: "deny" pull-request-branch-name: separator: "/" - reviewers: - - "andthum" labels: - "dependencies" - "skip-changelog" @@ -49,8 +45,6 @@ updates: insecure-external-code-execution: "deny" pull-request-branch-name: separator: "/" - reviewers: - - "andthum" labels: - "dependencies" - "skip-changelog" @@ -62,8 +56,6 @@ updates: interval: "weekly" pull-request-branch-name: separator: "/" - reviewers: - - "andthum" labels: - "dependencies" - "skip-changelog" From 1c106485e45b0dd3a9a0077412a6911cb730279b Mon Sep 17 00:00:00 2001 From: andthum <56444687+andthum@users.noreply.github.com> Date: Wed, 18 Mar 2026 22:04:17 +0100 Subject: [PATCH 08/12] [docs]: Fix broken links --- docs/source/conf.py | 2 +- src/mdtools/check.py | 4 ++-- src/mdtools/structure.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index ca5f00e3..fa1884b1 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -241,7 +241,7 @@ .. |explanation_of_these_terms| replace:: :raw-html:`explanation of these terms` .. |MDA_always_guesses_atom_masses| replace:: - :raw-html:`MDAnalysis always guesses atom masses` + :raw-html:`MDAnalysis always guesses atom masses` .. |shfmt| replace:: :raw-html:`shfmt` diff --git a/src/mdtools/check.py b/src/mdtools/check.py index 136bed33..e8a6b57f 100644 --- a/src/mdtools/check.py +++ b/src/mdtools/check.py @@ -1548,7 +1548,7 @@ def masses(ag, flash_test=True): of mass. .. _MDAnalysis always guesses atom masses: - https://userguide.mdanalysis.org/formats/guessing.html + https://userguide.mdanalysis.org/stable/guessing.html Parameters ---------- @@ -1615,7 +1615,7 @@ def masses_new(ag, verbose=False): center of mass. .. _MDAnalysis always guesses atom masses: - https://userguide.mdanalysis.org/formats/guessing.html + https://userguide.mdanalysis.org/stable/guessing.html Parameters ---------- diff --git a/src/mdtools/structure.py b/src/mdtools/structure.py index 5bcd7689..277b8161 100644 --- a/src/mdtools/structure.py +++ b/src/mdtools/structure.py @@ -951,7 +951,7 @@ def com(ag, pbc=False, compound="group", make_whole=False, debug=False): :class:`~MDAnalysis.core.groups.Atom` coordinates. .. _MDAnalysis always guesses atom masses: - https://userguide.mdanalysis.org/formats/guessing.html + https://userguide.mdanalysis.org/stable/guessing.html """ if compound == "atoms": if pbc: From da9b8aadc4b363be105bb1eef5d9e44d638db8d2 Mon Sep 17 00:00:00 2001 From: andthum <56444687+andthum@users.noreply.github.com> Date: Wed, 18 Mar 2026 22:04:42 +0100 Subject: [PATCH 09/12] [conf.py]: linkcheck: Extend list of ignored URLs --- docs/source/conf.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/source/conf.py b/docs/source/conf.py index fa1884b1..745ebe51 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -479,6 +479,7 @@ linkcheck_ignore = [ # 403 Client Error: Forbidden for url. r"https://www\.cabdirect\.org/cabdirect/abstract/19272700028", + r"https://docutils\.sourceforge\.io/docs/ref/rst/restructuredtext\.html#bullet-lists", # noqa: E501 r"https://doi\.org/10\.1002/9781118033005", r"https://doi\.org/10\.1021/acs\.jctc\.2c00327", r"https://doi\.org/10\.1063/1\.1320826", @@ -491,6 +492,12 @@ r"https://doi\.org/10\.1103/PhysRevB\.74\.184430", r"https://doi\.org/10\.1103/PhysRevLett\.98\.227802", r"https://doi\.org/10\.3233/DS-190026", + r"https://doi\.org/10\.5281/zenodo\.1172987", + r"https://doi\.org/10\.5281/zenodo\.1212495", + r"https://doi\.org/10\.5281/zenodo\.3233853", + r"https://doi\.org/10\.5281/zenodo\.7615177", + r"https://zenodo\.org/badge/DOI/10\.5281/zenodo\.7615177\.svg", + r"https://zenodo\.org/record/1172988", # 418 Client Error: Unknown for url. r"https://doi\.org/10\.1109/TSMC\.1979\.4310076", ] From 9f51308b843c1d295a658257e7cfa2f786ff8f3a Mon Sep 17 00:00:00 2001 From: andthum <56444687+andthum@users.noreply.github.com> Date: Thu, 19 Mar 2026 20:52:18 +0100 Subject: [PATCH 10/12] [tests.yml]: Bump MacOS runners from 13 to 14 MacOS 13 runners are not supported anymore (https://github.com/actions/runner-images/issues/13046). --- .github/workflows/tests-skip.yml | 15 +++++++++++---- .github/workflows/tests.yml | 15 +++++++++++---- 2 files changed, 22 insertions(+), 8 deletions(-) diff --git a/.github/workflows/tests-skip.yml b/.github/workflows/tests-skip.yml index 67de5e5b..39c6e6f6 100644 --- a/.github/workflows/tests-skip.yml +++ b/.github/workflows/tests-skip.yml @@ -56,21 +56,28 @@ jobs: # Python <3.8 is not supported in the MacOS 14 runner. os: - "ubuntu-latest" - - "macos-13" + - "macos-14" - "windows-latest" python-version: - "3.6" - "3.7" - "3.8" - "3.9" - # Python 3.6 is not supported anymore in the Ubuntu 22.04 runner - # https://github.com/actions/setup-python/issues/544#issuecomment-1332535877 - # Python 3.7 is not supported anymore in the Ubuntu 24.04 runner exclude: + # Python 3.6 is not supported anymore in the Ubuntu 22.04 runner + # https://github.com/actions/setup-python/issues/544#issuecomment-1332535877 + # Python 3.7 is not supported anymore in the Ubuntu 24.04 runner - os: "ubuntu-latest" python-version: "3.6" - os: "ubuntu-latest" python-version: "3.7" + # MacOS 13 is not supported anymore. + # Python 3.7 is not supported on MacOS 14 runners + # https://github.com/actions/runner-images/issues/13046 + - os: "macos-14" + python-version: "3.6" + - os: "macos-14" + python-version: "3.7" include: - os: "ubuntu-20.04" python-version: "3.6" diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index a4e42866..0328245d 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -151,21 +151,28 @@ jobs: # Python <3.8 is not supported in the MacOS 14 runner. os: - "ubuntu-latest" - - "macos-13" + - "macos-14" - "windows-latest" python-version: - "3.6" - "3.7" - "3.8" - "3.9" - # Python 3.6 is not supported anymore in the Ubuntu 22.04 runner - # https://github.com/actions/setup-python/issues/544#issuecomment-1332535877 - # Python 3.7 is not supported anymore in the Ubuntu 24.04 runner exclude: + # Python 3.6 is not supported anymore in the Ubuntu 22.04 runner + # https://github.com/actions/setup-python/issues/544#issuecomment-1332535877 + # Python 3.7 is not supported anymore in the Ubuntu 24.04 runner - os: "ubuntu-latest" python-version: "3.6" - os: "ubuntu-latest" python-version: "3.7" + # MacOS 13 is not supported anymore. + # Python 3.7 is not supported on MacOS 14 runners + # https://github.com/actions/runner-images/issues/13046 + - os: "macos-14" + python-version: "3.6" + - os: "macos-14" + python-version: "3.7" include: - os: "ubuntu-20.04" python-version: "3.6" From f756774b382bcbb5ef35b7c68a9b2ae4bd7a2ade Mon Sep 17 00:00:00 2001 From: andthum <56444687+andthum@users.noreply.github.com> Date: Thu, 19 Mar 2026 21:03:18 +0100 Subject: [PATCH 11/12] [tests.yml]: Remove deprecated ubuntu-20.04 runner Ubuntu 20.04 runners are not supported anymore (https://github.blog/changelog/2025-01-15-github-actions-ubuntu-20-runner-image-brownout-dates-and-other-breaking-changes/). --- .github/workflows/tests-skip.yml | 2 -- .github/workflows/tests.yml | 2 -- 2 files changed, 4 deletions(-) diff --git a/.github/workflows/tests-skip.yml b/.github/workflows/tests-skip.yml index 39c6e6f6..a8b9c492 100644 --- a/.github/workflows/tests-skip.yml +++ b/.github/workflows/tests-skip.yml @@ -79,8 +79,6 @@ jobs: - os: "macos-14" python-version: "3.7" include: - - os: "ubuntu-20.04" - python-version: "3.6" - os: "ubuntu-22.04" python-version: "3.7" # Do not cancel in-progress jobs if any matrix job fails diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 0328245d..0afa1cf1 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -174,8 +174,6 @@ jobs: - os: "macos-14" python-version: "3.7" include: - - os: "ubuntu-20.04" - python-version: "3.6" - os: "ubuntu-22.04" python-version: "3.7" # Do not cancel in-progress jobs if any matrix job fails From d62be7b6cc94515d39d2df495952147bf6189b63 Mon Sep 17 00:00:00 2001 From: andthum <56444687+andthum@users.noreply.github.com> Date: Thu, 19 Mar 2026 21:17:25 +0100 Subject: [PATCH 12/12] Remove Support for MacOS MDAnalysis 2.0 cannot be compiled using the MacOS C/C++ compiler clang. Building with GNU gcc/g++ is possible, but the application crashes at runtime, likely because NumPy for MacOS is compiled with clang. MDAnalysis requires NumPy >=1.19.2, <2.0 --- .github/workflows/tests-skip.yml | 9 --------- .github/workflows/tests.yml | 11 +---------- setup.py | 1 - 3 files changed, 1 insertion(+), 20 deletions(-) diff --git a/.github/workflows/tests-skip.yml b/.github/workflows/tests-skip.yml index a8b9c492..93aeecc6 100644 --- a/.github/workflows/tests-skip.yml +++ b/.github/workflows/tests-skip.yml @@ -53,10 +53,8 @@ jobs: strategy: matrix: # Tests must be run on all target platforms and Python versions. - # Python <3.8 is not supported in the MacOS 14 runner. os: - "ubuntu-latest" - - "macos-14" - "windows-latest" python-version: - "3.6" @@ -71,13 +69,6 @@ jobs: python-version: "3.6" - os: "ubuntu-latest" python-version: "3.7" - # MacOS 13 is not supported anymore. - # Python 3.7 is not supported on MacOS 14 runners - # https://github.com/actions/runner-images/issues/13046 - - os: "macos-14" - python-version: "3.6" - - os: "macos-14" - python-version: "3.7" include: - os: "ubuntu-22.04" python-version: "3.7" diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 0afa1cf1..042c97da 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -148,10 +148,8 @@ jobs: strategy: matrix: # Tests must be run on all target platforms and Python versions. - # Python <3.8 is not supported in the MacOS 14 runner. os: - "ubuntu-latest" - - "macos-14" - "windows-latest" python-version: - "3.6" @@ -166,13 +164,6 @@ jobs: python-version: "3.6" - os: "ubuntu-latest" python-version: "3.7" - # MacOS 13 is not supported anymore. - # Python 3.7 is not supported on MacOS 14 runners - # https://github.com/actions/runner-images/issues/13046 - - os: "macos-14" - python-version: "3.6" - - os: "macos-14" - python-version: "3.7" include: - os: "ubuntu-22.04" python-version: "3.7" @@ -220,7 +211,7 @@ jobs: python -m pip install --user --upgrade setuptools wheel python -m pip install --user --upgrade python-dev-tools python -m pip install --user "Cython <3.0" - python -m pip install --user "numpy >=1.19.2" + python -m pip install --user "numpy >=1.19.2,<2.0" - name: "Test installation of MDTools" run: | python -m pip install --user . diff --git a/setup.py b/setup.py index 359d5d8a..0004542b 100644 --- a/setup.py +++ b/setup.py @@ -160,7 +160,6 @@ def get_content(fname="README.rst"): "Intended Audience :: Science/Research", "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", # noqa: E501 "Natural Language :: English", - "Operating System :: MacOS", "Operating System :: Microsoft :: Windows", "Operating System :: POSIX :: Linux", "Programming Language :: Python :: 3",