From 067fa54ac288430d1a0409ff4cf414232e2de027 Mon Sep 17 00:00:00 2001 From: "David W.H. Swenson" Date: Fri, 19 Jul 2024 01:08:26 -0500 Subject: [PATCH] Update Python versions in CI --- .github/workflows/unit-tests.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index 4e4483d..ccdbd9e 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -23,22 +23,22 @@ jobs: strategy: matrix: CONDA_PY: - - 3.9 - - 3.8 - - 3.7 + - "3.12" + - "3.11" + - "3.10" OS: ["ubuntu"] MDTRAJ: ["mdtraj-release"] INSTALL_WITH: ["pip"] include: - - CONDA_PY: 3.9 + - CONDA_PY: "3.12" OS: "ubuntu" MDTRAJ: "mdtraj-dev" INSTALL_WITH: "pip" - - CONDA_PY: 3.9 + - CONDA_PY: "3.12" OS: "windows" MDTRAJ: "mdtraj-release" INSTALL_WITH: "conda" - - CONDA_PY: 3.7 + - CONDA_PY: "3.10" OS: "windows" MDTRAJ: "mdtraj-release" INSTALL_WITH: "conda"