From dd42d61d03d584051b39c4ada5132f9d223bcdbd Mon Sep 17 00:00:00 2001 From: Matthias Date: Wed, 7 Oct 2020 08:48:45 +0200 Subject: [PATCH] Run CI on 3.9 --- .github/workflows/ci.yml | 4 ++-- setup.sh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f259129d4..d48dec2d3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ jobs: strategy: matrix: os: [ ubuntu-18.04, ubuntu-20.04, macos-latest ] - python-version: [3.7, 3.8] + python-version: [3.7, 3.8, 3.9] steps: - uses: actions/checkout@v2 @@ -119,7 +119,7 @@ jobs: strategy: matrix: os: [ windows-latest ] - python-version: [3.7, 3.8] + python-version: [3.7, 3.8, 3.9] steps: - uses: actions/checkout@v2 diff --git a/setup.sh b/setup.sh index 049a6a77e..419fde9bb 100755 --- a/setup.sh +++ b/setup.sh @@ -42,7 +42,7 @@ function check_installed_python() { fi if [ -z ${PYTHON} ]; then - echo "No usable python found. Please make sure to have python3.6 or python3.7 installed" + echo "No usable python found. Please make sure to have python3.6, python3.7 or python3.8 installed" exit 1 fi }