From effc2f39df5ddec2e751cca102ec7ee3f25a3f95 Mon Sep 17 00:00:00 2001 From: Hakim Amarullah Date: Mon, 5 Sep 2022 18:59:34 +0700 Subject: [PATCH 1/3] Add python 3.10 for testing in ci.yml Signed-off-by: Hakim Amarullah --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 81560217..3a2d13f1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,7 +21,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [3.7, 3.8, 3.9] + python-version: [3.7, 3.8, 3.9, 3.10] env: UCI_DB: "https://archive.ics.uci.edu/ml/machine-learning-databases" From 40f34f2e9a8c38ade09b90e5402a4f0ad710b57c Mon Sep 17 00:00:00 2001 From: Hakim Amarullah Date: Wed, 14 Sep 2022 07:28:46 +0700 Subject: [PATCH 2/3] Add python v3.10 to R build Signed-off-by: Hakim Amarullah --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3a2d13f1..d96bc05a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -75,7 +75,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [3.7, 3.8, 3.9] + python-version: [3.7, 3.8, 3.9, 3.10] steps: - name: Check out repo From e39e04cef483a3cab88f1c3b358e47af7a6b19f1 Mon Sep 17 00:00:00 2001 From: Hakim Amarullah Date: Thu, 15 Sep 2022 06:42:43 +0700 Subject: [PATCH 3/3] Fix: error reading python version Signed-off-by: Hakim Amarullah --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d96bc05a..8b451dae 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,7 +21,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [3.7, 3.8, 3.9, 3.10] + python-version: [3.7, 3.8, 3.9, '3.10'] env: UCI_DB: "https://archive.ics.uci.edu/ml/machine-learning-databases" @@ -75,7 +75,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [3.7, 3.8, 3.9, 3.10] + python-version: [3.7, 3.8, 3.9, '3.10'] steps: - name: Check out repo