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
This commit is contained in:
Jacob Alexander
2019-09-29 23:54:49 -07:00
parent 78776de647
commit 8361fa8597

View File

@@ -1,4 +1,4 @@
name: Python package name: Python Test Packaging
on: [push, pull_request] on: [push, pull_request]
@@ -10,7 +10,9 @@ jobs:
max-parallel: 4 max-parallel: 4
fail-fast: false fail-fast: false
matrix: 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] os: [ubuntu-latest, macOS-latest]
steps: steps: