<fangerer>
venv/setup_py_install_universal/lib/python3.10/site-packages/hpy_pof-0.0.0-py3.10-macosx-12-x86_64.egg: Zip archive data, at least v2.0 to extract, compression method=deflate
<fangerer>
also, in the working case, verbose output prints: `import 'pofpackage' # <_frozen_importlib_external._NamespaceLoader object at 0x111624fa0>`
<fangerer>
and in the broken case: `import 'pofpackage' # <_frozen_importlib_external.SourceFileLoader object at 0x110816050>`
<fangerer>
Okay, I think I have a reasonable solution: specifying `zip_safe=False` in `proof-of-concept/setup.py`.
<fangerer>
Seemingly, Python 3.11 was deployed and now tests autogen, cppcheck, and infer are failing. I fixed the autogen problem but I'm not sure how to do it for cppcheck and infer. So, I'm going back to 3.10 for those.
<antocuni>
also, FWIW, the tests in test_pof are not very good/well designed. They started as "let's check that pof works" but they evolved in "let's check that setuptools works"
<antocuni>
nowadays we have test_distutils which is much better and allows more fine grained tests
<antocuni>
ideally, I would like to move all various test cases from test_pof to test_distutils