From 4d58d4e44ace32d7ccb194fd3fc7b6cf4f1a3d19 Mon Sep 17 00:00:00 2001 From: Jim Bosch Date: Thu, 10 Oct 2024 09:45:19 -0400 Subject: [PATCH 1/2] Update Python CI versions. --- .github/workflows/build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index c14fc6c6..f626d31d 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["2.7", "3.7", "3.8", "3.9", "3.10"] + python-version: ["3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v2 - uses: conda-incubator/setup-miniconda@v2 From 7364bb9a98b24a80fdbf4d4abbb3b4fd79375391 Mon Sep 17 00:00:00 2001 From: Jim Bosch Date: Thu, 10 Oct 2024 09:53:22 -0400 Subject: [PATCH 2/2] Print conda env dependency versions in CI. --- .github/workflows/build.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index f626d31d..9e4244d2 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -26,6 +26,9 @@ jobs: environment-file: etc/conda-forge-testing.yaml activate-environment: ndarray + - name: Print conda environment + run: conda list -n ndarray + - name: Create Build Environment # Some projects don't allow in-source building, so create a separate build directory # We'll use this as our working directory for all subsequent commands