File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 53
53
- name : Bootstrap vcpkg
54
54
run : ${{ env.VCPKG_ROOT }}/bootstrap-vcpkg.bat -disableMetrics
55
55
56
+ - name : Last build environment setup steps
57
+ run : |
58
+ source .venv/bin/activate
59
+ python automations/my_automator.py setup dev-env
60
+
56
61
- name : Build x86 C extension
57
- if : ${{ matrix.win_arch }} == 'x86'
62
+ if : ${{ matrix.win_arch == 'x86' }}
58
63
run : |
59
64
${{ env.VCPKG_ROOT }}/vcpkg install --triplet=x86-windows-static
60
65
call .venv\Scripts\activate.bat
63
68
shell : cmd
64
69
65
70
- name : Build x64 C extension
66
- if : ${{ matrix.win_arch }} == 'x64'
71
+ if : ${{ matrix.win_arch == 'x64' }}
67
72
run : |
68
73
${{ env.VCPKG_ROOT }}/vcpkg install --triplet=x64-windows-static
69
74
call .venv\Scripts\activate.bat
Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ pymol2 = "modules/pymol2"
68
68
build = [" cp311-*" ] # Only for debug purposes
69
69
# Skip 32-bit builds
70
70
# skip = ["*-win32", "*-manylinux_i686"]
71
- skip = [" *-manylinux_i686" ]
71
+ skip = [" *-manylinux_i686" , " *musllinux* " ]
72
72
test-requires = [" pytest" , " importlib_metadata" ]
73
73
test-command = " pytest {project}/tests/"
74
74
You can’t perform that action at this time.
0 commit comments