We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 032450e commit fa70576Copy full SHA for fa70576
.github/workflows/ci.yml
@@ -403,7 +403,9 @@ jobs:
403
404
- name: Create libpython symlink
405
shell: msys2 {0}
406
- run: ln -s /${{ matrix.path }}/lib/libpython3.11.dll.a /${{ matrix.path }}/lib/libpython311.dll.a
+ run: |
407
+ PYTHON_MINOR_VER=$(python -c "import sys; print(sys.version_info.minor)")
408
+ ln -s /${{ matrix.path }}/lib/libpython3.${PYTHON_MINOR_VER}.dll.a /${{ matrix.path }}/lib/libpython3${PYTHON_MINOR_VER}.dll.a
409
410
- name: Test examples
411
0 commit comments