From 416393885429240ea599411bd7386c3dc04e275c Mon Sep 17 00:00:00 2001 From: nulano Date: Wed, 20 Nov 2019 17:48:58 +0000 Subject: [PATCH] Test Python 3.8 on Windows with GitHub Actions --- .github/workflows/test-windows.yml | 2 +- winbuild/config.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test-windows.yml b/.github/workflows/test-windows.yml index 075707bf6..e5356b79f 100644 --- a/.github/workflows/test-windows.yml +++ b/.github/workflows/test-windows.yml @@ -9,7 +9,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.5", "3.6", "3.7"] + python-version: ["3.5", "3.6", "3.7", "3.8"] architecture: ["x86", "x64"] include: - architecture: "x86" diff --git a/winbuild/config.py b/winbuild/config.py index 826c6183c..999e7e5b8 100644 --- a/winbuild/config.py +++ b/winbuild/config.py @@ -13,6 +13,7 @@ pythons = { "3.5": {"compiler": 7.1, "vc": 2015}, "3.6": {"compiler": 7.1, "vc": 2015}, "3.7": {"compiler": 7.1, "vc": 2015}, + "3.8": {"compiler": 7.1, "vc": 2015}, } VIRT_BASE = "c:/vp/"