Hi, trying to test a python distribution, but if I...
# general
w
Hi, trying to test a python distribution, but if I specify it with a wheel config, pex suddenly forces need to find wheels of dependencies to run the test. E.g.
Copy code
stderr:
Failed to resolve requirements from PEX environment @ /Users/nasron/.cache/pants/named_caches/pex_root/unzipped_pexes/c54e3603abc410009b9e755a1c64adc47c19231d.
Needed cp39-cp39-macosx_12_0_arm64 compatible dependencies for:
 1: cryptography
    Required by:
      iai-fl-client 2.0.24
    But this pex had no ProjectName(raw='cryptography', normalized='cryptography') distributions.
 2: ddsketch
    Required by:
      iai-fl-client 2.0.24
    But this pex had no ProjectName(raw='ddsketch', normalized='ddsketch') distributions.
 3: diffprivlib
    Required by:
      iai-fl-client 2.0.24
    But this pex had no ProjectName(raw='diffprivlib', normalized='diffprivlib') distributions.
But if i make the distribution
wheel=False
test will run fine Is there some guidance on how to configure a wheel package properly?