We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 676573d commit 2491444Copy full SHA for 2491444
1 file changed
master/master.cfg
@@ -225,10 +225,12 @@ class HalideBuilder(BuilderConfig):
225
226
def python_version(self):
227
base_version = "3.10"
228
- if self.bits == 32 and self.os == "windows":
+ if self.arch == "x86" and self.bits == 32 and self.os == "windows":
229
return f"{base_version}-x86"
230
- if self.bits == 32 and self.os == "linux":
231
- return f"{base_version}-armv7-gnueabihf"
+ if self.arch == "arm" and self.bits == 32 and self.os == "linux":
+ # piwheels only provides odd numbered Python versions
232
+ # for some reason.
233
+ return "3.11-armv7-gnueabihf"
234
return base_version
235
236
# Serialization-via-JIT testing could run anywhere, but we limit it
0 commit comments