From 8361fa8597af8045b6393a0b4372198ef8370984 Mon Sep 17 00:00:00 2001 From: Jacob Alexander Date: Sun, 29 Sep 2019 23:54:49 -0700 Subject: [PATCH] Currently asyncio examples require Python 3.7+ - It should be possible to port asyncio examples to at least Python 3.6 * However, in my quick 10 minute attempt it wasn't as smooth as I'd hoped --- .github/workflows/pythonpackage.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml index bda2ebc..41afa2a 100644 --- a/.github/workflows/pythonpackage.yml +++ b/.github/workflows/pythonpackage.yml @@ -1,4 +1,4 @@ -name: Python package +name: Python Test Packaging on: [push, pull_request] @@ -10,7 +10,9 @@ jobs: max-parallel: 4 fail-fast: false matrix: - python-version: [3.5, 3.6, 3.7] + # Some asyncio commands require 3.7+ + # It may be possible to use 3.6 and maybe 3.5; however, this will take some patching to get examples to work + python-version: [3.7] os: [ubuntu-latest, macOS-latest] steps: