Add version bound for `cryptography` wheels on PyPy 3.10
Marco Ricci

Marco Ricci commited on 2026-04-03 20:06:52
Zeige 1 geänderte Dateien mit 3 Einfügungen und 0 Löschungen.


Again, we did not keep our test environments up-to-date, lest we would
likely have noticed this incompatibility earlier… :/
... ...
@@ -102,6 +102,9 @@ export-dev-wheels = [
102 102
     # `cryptography` 44.0.0 does not publish wheels for PyPy 3.9
103 103
     # anymore.
104 104
     'cryptography < 44 ; python_version < "3.10" and platform_python_implementation == "PyPy"',
105
+    # `cryptography` 46.0.0 does not publish wheels for PyPy 3.10
106
+    # anymore.
107
+    'cryptography < 46 ; python_version < "3.11" and platform_python_implementation == "PyPy"',
105 108
     # `cryptography` 44.0.1 is the first version to publish wheels for
106 109
     # PyPy 3.11.
107 110
     'cryptography > 44.0.1 ; python_version >= "3.11" and platform_python_implementation == "PyPy"',
108 111