From c410aae5331f07b60a9e183098051dac008b3fd2 Mon Sep 17 00:00:00 2001 From: pillar1989 Date: Tue, 2 Jun 2026 10:37:51 +0800 Subject: [PATCH] fix: bump min Python to 3.11 in smoke-test and conda env scikit-image>=0.26, scikit-learn>=1.8, tensorboard>=2.20 all require Python>=3.11. smoke-test Python 3.10 and conda env python<=3.10 were incompatible. --- .github/workflows/smoke-test.yml | 2 +- environment.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/smoke-test.yml b/.github/workflows/smoke-test.yml index 7d42fa99..6e9911d8 100644 --- a/.github/workflows/smoke-test.yml +++ b/.github/workflows/smoke-test.yml @@ -34,9 +34,9 @@ jobs: - ubuntu-latest - windows-latest python-version: - - '3.10' - '3.11' - '3.12' + - '3.13' defaults: run: shell: bash -l {0} diff --git a/environment.yml b/environment.yml index fe7f6ff5..17703ed3 100644 --- a/environment.yml +++ b/environment.yml @@ -4,5 +4,5 @@ channels: - defaults dependencies: - - python>=3.8, <= 3.10 + - python>=3.11 - pip>=23.0.1