From 8717789595ab3898d455d1a8b7b8a22640200508 Mon Sep 17 00:00:00 2001 From: Christian Decker Date: Thu, 24 Feb 2022 11:54:06 +0100 Subject: [PATCH] gci: Don't test with 3.6, pyln-testing and pyln-client require >=3.7 --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 710ad5e..c8575c7 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -12,13 +12,13 @@ on: jobs: build-and-test: - name: Test PY=${{ matrix.python-version}}, DEV=${{ matrix.developer }}, EXP=${{ matrix.experimental }}, DEP=${{ matrix.deprecated }} + name: Test PY=${{ matrix.python-version }}, DEV=${{ matrix.developer }}, EXP=${{ matrix.experimental }}, DEP=${{ matrix.deprecated }} runs-on: ubuntu-latest timeout-minutes: 45 strategy: fail-fast: false matrix: - python-version: [3.6, 3.7, 3.8] + python-version: [3.7, 3.8, 3.9] developer: [0,1] experimental: [1] deprecated: [0]