We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 914493b commit 3be9308Copy full SHA for 3be9308
1 file changed
pyproject.toml
@@ -23,11 +23,14 @@ requires = [
23
"x-pth-tester",
24
25
# Cryptography provides an ABI3 wheel for all desktop platforms and iOS.
26
- """cryptography; \
+ # Crptography 49 doesn't publish x86-64 or universal macOS wheels.
27
+ """cryptography < 49.0; \
28
(platform_system != 'Android' and python_version < '3.15') \
29
or (platform_system == 'Android' and python_version < '3.14')""",
30
# lru_dict available everywhere
- "lru_dict; python_version < '3.15'",
31
+ """lru_dict; \
32
+ (platform_system != 'Android' and python_version < '3.15') \
33
+ or (platform_system == 'Android' and python_version < '3.14')""",
34
# pillow not available anywhere on 3.15, or on Android for 3.14+.
35
"""pillow; \
36
0 commit comments