From 8d654b9d4a29f0dc83ae479ddb0b300718fdc2d4 Mon Sep 17 00:00:00 2001 From: jakirkham Date: Mon, 1 Apr 2024 21:09:06 -0700 Subject: [PATCH] Require Python 3.10 everywhere One GHA test was still using Python 3.8 whereas the rest use Python 3.10, upgrade it to Python 3.10 as well to match. --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 364448b57..2be578dc7 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -67,7 +67,7 @@ jobs: - uses: conda-incubator/setup-miniconda@v3 with: - python-version: 3.8 + python-version: '3.10' channels: conda-forge,defaults channel-priority: strict show-channel-urls: true