From ced1497015c9c21562a1fe52df6946fd0cf4956c Mon Sep 17 00:00:00 2001 From: Matthias Feurer Date: Fri, 24 Feb 2023 09:27:35 +0100 Subject: [PATCH 1/2] Try Ubunte 20.04 for Python 3.6 --- .github/workflows/test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7241f7990..614769e42 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -19,15 +19,15 @@ jobs: - python-version: 3.6 scikit-learn: 0.18.2 scipy: 1.2.0 - os: ubuntu-latest + os: ubuntu-20.04 sklearn-only: 'true' - python-version: 3.6 scikit-learn: 0.19.2 - os: ubuntu-latest + os: ubuntu-20.04 sklearn-only: 'true' - python-version: 3.6 scikit-learn: 0.20.2 - os: ubuntu-latest + os: ubuntu-20.04 sklearn-only: 'true' - python-version: 3.8 scikit-learn: 0.23.1 From 2691f9de87857e5d805ac7a8a49d4aec9d848cff Mon Sep 17 00:00:00 2001 From: Matthias Feurer Date: Fri, 24 Feb 2023 10:43:12 +0100 Subject: [PATCH 2/2] use old ubuntu for python 3.6 --- .github/workflows/test.yml | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 614769e42..782b6e0a3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,7 +8,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - python-version: [3.6, 3.7, 3.8] + python-version: [3.7, 3.8] scikit-learn: [0.21.2, 0.22.2, 0.23.1, 0.24] os: [ubuntu-latest] sklearn-only: ['true'] @@ -29,6 +29,22 @@ jobs: scikit-learn: 0.20.2 os: ubuntu-20.04 sklearn-only: 'true' + - python-version: 3.6 + scikit-learn: 0.21.2 + os: ubuntu-20.04 + sklearn-only: 'true' + - python-version: 3.6 + scikit-learn: 0.22.2 + os: ubuntu-20.04 + sklearn-only: 'true' + - python-version: 3.6 + scikit-learn: 0.23.1 + os: ubuntu-20.04 + sklearn-only: 'true' + - python-version: 3.6 + scikit-learn: 0.24 + os: ubuntu-20.04 + sklearn-only: 'true' - python-version: 3.8 scikit-learn: 0.23.1 code-cov: true