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 5353 - name : Bootstrap vcpkg
5454 run : ${{ env.VCPKG_ROOT }}/bootstrap-vcpkg.bat -disableMetrics
5555
56+ - name : Last build environment setup steps
57+ run : |
58+ source .venv/bin/activate
59+ python automations/my_automator.py setup dev-env
60+
5661 - name : Build x86 C extension
57- if : ${{ matrix.win_arch }} == 'x86'
62+ if : ${{ matrix.win_arch == 'x86' }}
5863 run : |
5964 ${{ env.VCPKG_ROOT }}/vcpkg install --triplet=x86-windows-static
6065 call .venv\Scripts\activate.bat
6368 shell : cmd
6469
6570 - name : Build x64 C extension
66- if : ${{ matrix.win_arch }} == 'x64'
71+ if : ${{ matrix.win_arch == 'x64' }}
6772 run : |
6873 ${{ env.VCPKG_ROOT }}/vcpkg install --triplet=x64-windows-static
6974 call .venv\Scripts\activate.bat
Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ pymol2 = "modules/pymol2"
6868build = [" cp311-*" ] # Only for debug purposes
6969# Skip 32-bit builds
7070# skip = ["*-win32", "*-manylinux_i686"]
71- skip = [" *-manylinux_i686" ]
71+ skip = [" *-manylinux_i686" , " *musllinux* " ]
7272test-requires = [" pytest" , " importlib_metadata" ]
7373test-command = " pytest {project}/tests/"
7474
You can’t perform that action at this time.
0 commit comments