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 48
48
python-architecture : " x64" ,
49
49
rust-target : " x86_64-pc-windows-msvc" ,
50
50
},
51
+ {
52
+ os : " windows-latest" ,
53
+ python-architecture : " x86" ,
54
+ rust-target : " i686-pc-windows-msvc" ,
55
+ },
51
56
]
52
57
include :
53
58
# ubuntu-24.04 does not support 3.7
@@ -141,6 +146,11 @@ jobs:
141
146
python-architecture : " x64" ,
142
147
rust-target : " x86_64-pc-windows-msvc" ,
143
148
},
149
+ {
150
+ os : " windows-latest" ,
151
+ python-architecture : " x86" ,
152
+ rust-target : " i686-pc-windows-msvc" ,
153
+ },
144
154
]
145
155
include :
146
156
# ubuntu-24.04 does not support 3.7
@@ -181,6 +191,7 @@ jobs:
181
191
nox -f examples/simple/noxfile.py
182
192
env :
183
193
CARGO_TERM_VERBOSE : true
194
+ CARGO_BUILD_TARGET : ${{ matrix.platform.rust-target }}
184
195
RUST_BACKTRACE : 1
185
196
186
197
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
74
74
// and similar aren't constructible
75
75
#![ cfg_attr( feature = "gil-refs" , deny( missing_debug_implementations) ) ]
76
76
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
-
80
77
pub mod array;
81
78
mod array_like;
82
79
pub mod borrow;
You can’t perform that action at this time.
0 commit comments