python -m build --sdist --wheel says:
File "/tmp/build-env-69qjf3qm/lib/python3.12/site-packages/setuptools/_distutils/dist.py", line 1021, in run_command
cmd_obj.run()
File "<string>", line 21, in run
File "<string>", line 14, in run_compile_catalog
KeyError: 'use_fuzzy'
in setup.py change it to compiler.use_fuzzy = option_dict["use-fuzzy"][1] and it works, but I'm not sure what other ramifications this has
python -m build --sdist --wheelsays:in setup.py change it to
compiler.use_fuzzy = option_dict["use-fuzzy"][1]and it works, but I'm not sure what other ramifications this has