We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 110003e commit 9576dffCopy full SHA for 9576dff
.github/workflows/automaticRelease.yaml
@@ -40,7 +40,9 @@ jobs:
40
python-version: 3.11
41
architecture: 'x64'
42
- name: Build Rust Library
43
- run: cargo build --target x86_64-pc-windows-msvc --release
+ run: |
44
+ rustup target add x86_64-pc-windows-msvc
45
+ cargo build --target x86_64-pc-windows-msvc --release
46
- name: Setup Example dir
47
run: |
48
cp target/x86_64-pc-windows-msvc/release/libmathcat_py.dll Example/libmathcat_py.pyd
0 commit comments