Test Python 3.8 on Windows with GitHub Actions

This commit is contained in:
nulano 2019-11-20 17:48:58 +00:00
parent f90a21965a
commit 4163938854
2 changed files with 2 additions and 1 deletions

View File

@ -9,7 +9,7 @@ jobs:
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
python-version: ["3.5", "3.6", "3.7"] python-version: ["3.5", "3.6", "3.7", "3.8"]
architecture: ["x86", "x64"] architecture: ["x86", "x64"]
include: include:
- architecture: "x86" - architecture: "x86"

View File

@ -13,6 +13,7 @@ pythons = {
"3.5": {"compiler": 7.1, "vc": 2015}, "3.5": {"compiler": 7.1, "vc": 2015},
"3.6": {"compiler": 7.1, "vc": 2015}, "3.6": {"compiler": 7.1, "vc": 2015},
"3.7": {"compiler": 7.1, "vc": 2015}, "3.7": {"compiler": 7.1, "vc": 2015},
"3.8": {"compiler": 7.1, "vc": 2015},
} }
VIRT_BASE = "c:/vp/" VIRT_BASE = "c:/vp/"