From 5683bd2785fcd401516f734ecf856730a46a4260 Mon Sep 17 00:00:00 2001 From: derrick chambers Date: Mon, 19 Aug 2024 08:53:46 -0700 Subject: [PATCH] try pull tags, bump python version matrix --- .github/workflows/runtests.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/runtests.yml b/.github/workflows/runtests.yml index 749288a..3c9c20a 100644 --- a/.github/workflows/runtests.yml +++ b/.github/workflows/runtests.yml @@ -26,10 +26,14 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest, windows-latest] - python-version: ["3.8", "3.9", "3.10", "3.11"] + python-version: ["3.9", "3.10", "3.11", "3.12"] steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v4 + + - name: "get tags" + run: | + git fetch --tags --force # Retrieve annotated tags. - name: Setup conda uses: conda-incubator/setup-miniconda@v2