Skip to content

Commit

Permalink
Fixed runtime error on windows with python 3.5 - 3.8
Browse files Browse the repository at this point in the history
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
  • Loading branch information
Stefan Klug committed Mar 2, 2021
1 parent 9cb753e commit 1e12ad5
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
6 changes: 3 additions & 3 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 1e12ad5

Please sign in to comment.