From 20a039bcdfd093ed6b62466e45af1f18463f33ec Mon Sep 17 00:00:00 2001 From: "Matthew W. Thompson" Date: Wed, 5 Jul 2023 13:00:28 -0500 Subject: [PATCH 1/2] Test on and allow Python 3.11 --- .github/workflows/CI.yaml | 2 +- setup.cfg | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index 6ecf665..dbf8fe2 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -27,7 +27,7 @@ jobs: python-version: - "3.9" - "3.10" - + - "3.11" steps: - uses: actions/checkout@v3 diff --git a/setup.cfg b/setup.cfg index 83c5e85..e9e4ab8 100644 --- a/setup.cfg +++ b/setup.cfg @@ -41,4 +41,4 @@ filterwarnings = ignore::PendingDeprecationWarning [options] -python_requires = >=3.8, <=3.11 +python_requires = >=3.8, <=3.12 From 41b7267ccef1318790894cdf933112c658a25d8d Mon Sep 17 00:00:00 2001 From: "Matthew W. Thompson" Date: Wed, 5 Jul 2023 13:00:39 -0500 Subject: [PATCH 2/2] Switch to `mamba-org/setup-micromamba` --- .github/workflows/CI.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index dbf8fe2..2d8aaae 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -39,10 +39,10 @@ jobs: ulimit -a - name: Install conda environment - uses: mamba-org/provision-with-micromamba@main + uses: mamba-org/setup-micromamba@v1 with: environment-file: devtools/conda-envs/test_env.yaml - extra-specs: | + create-args: >- python=${{ matrix.python-version }} - name: Install DE-ForceFields