PyGeometry (?) dependency not declared
At least on OSX, setup from the current master branch fails with:
"ModuleNotFoundError: No module named 'geometry'"
Presumably, this refers to the PyGeometry package: https://github.com/AndreaCensi/geometry
pip install PyGeometry superficially works but then the package gives an import error:
ImportError: cannot import name 'operatorPrecedence' from 'pyparsing' (/opt/homebrew/Cellar/sip/6.6.1/libexec/lib/python3.9/site-packages/pyparsing/__init__.py)
This looks like a regression error in the library and there is some mentioning of changes in pyparsing that would need to be taken into account but I didn't investigate this further. It looks like the PyGeometry package is not maintained. I have tried installing from the github master branch and the problem persists.
there is a module in biggles called geometry.py
so this is not referring to PyGeometry
Note that None of the previous maintainers (myself and @beckermr ) uses biggles any more.
If you would like to become a maintainer we could add you as a collaborator
Hi Erin, yeah I saw that it was awfully quiet here :) . I am not even actively coding myself now. Just trying to keep my own legacy package up and running. I guess we are all in a similar situation.
But thanks a lot for the hint. I will try to find some time to see why there is an import error then. If it is all internal packages then the issue is either on my end or can be fixed within the biggles code base. I also found an issue with a 2to3 option in setup.py that was not accepted by the most recent python on my fresh OSX. I'll see how far I get and send a pull request in case I find a solution for both.