From 1e12ad57e7d097f6db76cf28c7cd40a3e794813a Mon Sep 17 00:00:00 2001 From: Stefan Klug Date: Tue, 2 Mar 2021 14:43:56 +0100 Subject: [PATCH] Fixed runtime error on windows with python 3.5 - 3.8 this was introduced in 1.7.1 for python 3.5, 3.6, 3.7, 3.8 Reason was that VisualStudio 2019 automatically provides a vcruntime140.dll that depends on vcruntime140_1.dll but python < 3.9 doesn't package vcruntime140_1.dll --- .appveyor.yml | 8 ++++++++ changelog.txt | 6 +++--- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index fb886ca..623a90a 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -21,13 +21,21 @@ environment: DISTUTILS_USE_SDK: "1" APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015 - PYTHON: "C:\\Python35" + APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015 - PYTHON: "C:\\Python35-x64" + APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015 - PYTHON: "C:\\Python36" + APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015 - PYTHON: "C:\\Python36-x64" + APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015 - PYTHON: "C:\\Python37" + APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015 - PYTHON: "C:\\Python37-x64" + APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015 - PYTHON: "C:\\Python38" + APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015 - PYTHON: "C:\\Python38-x64" + APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015 - PYTHON: "C:\\Python39" - PYTHON: "C:\\Python39-x64" diff --git a/changelog.txt b/changelog.txt index ee3fd1c..c373e6f 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,6 +1,6 @@ -Version ?.?.? - - Date ????-??-?? - +Version 1.7.2rc1 + - Fixed runtime error on windows with python 3.5 - 3.8 + Version 1.7.1 - Date 2021-02-22 - Added missing pypi deployments for python 3.9 on windows