We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e96da2 commit efc5b7dCopy full SHA for efc5b7d
.github/workflows/embeddable_env_without_OpenMS.yaml
@@ -49,6 +49,21 @@ jobs:
49
cp $PYTHON_DIR/DLLs/_tkinter.pyd $EMBED_DIR/
50
cp $PYTHON_DIR/DLLs/tcl86t.dll $EMBED_DIR/
51
cp $PYTHON_DIR/DLLs/tk86t.dll $EMBED_DIR/
52
+
53
+ - name: Bundle MSVC runtime DLLs
54
+ shell: powershell
55
+ run: |
56
+ $embed = "python-${{ env.PYTHON_VERSION }}"
57
+ $dlls = @(
58
+ "vcomp140.dll",
59
+ "vcruntime140.dll",
60
+ "vcruntime140_1.dll",
61
+ "msvcp140.dll"
62
+ )
63
64
+ foreach ($dll in $dlls) {
65
+ Copy-Item "C:\Windows\System32\$dll" "$embed\$dll" -Force
66
+ }
67
68
- name: Install pip
69
run: |
0 commit comments