From 16dbe7995bbe886bbd670034d5e0923ad0c1dd11 Mon Sep 17 00:00:00 2001 From: Craig Allwardt Date: Tue, 29 Dec 2020 23:31:51 -0500 Subject: [PATCH] Removed python 3.8 and 3.9 from test matrix for now --- .github/workflows/pytest-auth.yml | 2 +- .github/workflows/pytest-testutils.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pytest-auth.yml b/.github/workflows/pytest-auth.yml index 1a26ecf3d8..0624c88c0d 100644 --- a/.github/workflows/pytest-auth.yml +++ b/.github/workflows/pytest-auth.yml @@ -26,7 +26,7 @@ jobs: matrix: # Each entry in the os and python-version matrix will be run so for the 3 x 4 there will be 12 jobs run os: [ ubuntu-16.04, ubuntu-18.04, ubuntu-20.04 ] - python-version: [ 3.6, 3.7, 3.8, 3.9 ] + python-version: [ 3.6, 3.7] # , 3.8, 3.9 ] # Run-on determines the operating system available to run on # - At the current time there is only ubuntu machines between 16.04 and 20.04 available diff --git a/.github/workflows/pytest-testutils.yml b/.github/workflows/pytest-testutils.yml index 9453d54aa2..35348c07fb 100644 --- a/.github/workflows/pytest-testutils.yml +++ b/.github/workflows/pytest-testutils.yml @@ -19,7 +19,7 @@ jobs: matrix: # Each entry in the os and python-version matrix will be run so for the 3 x 4 there will be 12 jobs run os: [ ubuntu-16.04, ubuntu-18.04, ubuntu-20.04 ] - python-version: [ 3.6, 3.7, 3.8, 3.9 ] + python-version: [ 3.6, 3.7] # , 3.8, 3.9 ] runs-on: ${{ matrix.os }}