File tree Expand file tree Collapse file tree 2 files changed +11
-3
lines changed Expand file tree Collapse file tree 2 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 4848 python-architecture : " x64" ,
4949 rust-target : " x86_64-pc-windows-msvc" ,
5050 },
51+ {
52+ os : " windows-latest" ,
53+ python-architecture : " x86" ,
54+ rust-target : " i686-pc-windows-msvc" ,
55+ },
5156 ]
5257 include :
5358 # ubuntu-24.04 does not support 3.7
@@ -141,6 +146,11 @@ jobs:
141146 python-architecture : " x64" ,
142147 rust-target : " x86_64-pc-windows-msvc" ,
143148 },
149+ {
150+ os : " windows-latest" ,
151+ python-architecture : " x86" ,
152+ rust-target : " i686-pc-windows-msvc" ,
153+ },
144154 ]
145155 include :
146156 # ubuntu-24.04 does not support 3.7
@@ -181,6 +191,7 @@ jobs:
181191 nox -f examples/simple/noxfile.py
182192 env :
183193 CARGO_TERM_VERBOSE : true
194+ CARGO_BUILD_TARGET : ${{ matrix.platform.rust-target }}
184195 RUST_BACKTRACE : 1
185196
186197 cross-build :
Original file line number Diff line number Diff line change @@ -74,9 +74,6 @@ as well as the [`PyReadonlyArray::try_as_matrix`] and [`PyReadwriteArray::try_as
7474// and similar aren't constructible
7575#![ cfg_attr( feature = "gil-refs" , deny( missing_debug_implementations) ) ]
7676
77- #[ cfg( all( target_os = "windows" , target_arch = "x86" ) ) ]
78- compile_error ! ( "Compilation for 32-bit windows is not currently supported. See https://github.com/PyO3/rust-numpy/issues/448" ) ;
79-
8077pub mod array;
8178mod array_like;
8279pub mod borrow;
You can’t perform that action at this time.
0 commit comments