From 39fbdd359000931d7c3a36a1d49e3343c9ca5d11 Mon Sep 17 00:00:00 2001 From: Jussi Vatjus-Anttila Date: Fri, 2 Aug 2024 08:05:34 +0300 Subject: [PATCH] drop py3.7 from CI and update node to 20 --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c19d80e..a386159 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -18,7 +18,7 @@ jobs: fail-fast: false matrix: os: [ ubuntu-latest, macos-latest, windows-latest ] - python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11' ] + python-version: [ '3.8', '3.9', '3.10', '3.11' ] name: ${{ matrix.os }}-Python-${{ matrix.python-version }} steps: - uses: actions/checkout@v4 @@ -32,7 +32,7 @@ jobs: if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.10' uses: actions/setup-node@v4 with: - node-version: '16' + node-version: '20' - name: Install appium and adb if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.10'