7
0
Files
saltbundlepy-tornado/fix-wheel-cp.patch

14 lines
482 B
Diff
Raw Permalink Normal View History

Index: tornado-6.3.2/setup.py
===================================================================
--- tornado-6.3.2.orig/setup.py
+++ tornado-6.3.2/setup.py
@@ -63,7 +63,7 @@ if wheel is not None:
2025-10-14 17:10:08 +01:00
python, abi, plat = super().get_tag()
if python.startswith("cp"):
- return "cp38", "abi3", plat
+ return "cp311", "abi3", plat
return python, abi, plat
kwargs["cmdclass"] = {"bdist_wheel": bdist_wheel_abi3}