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

14 lines
482 B
Diff

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:
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}