Hi,
I'm using OpenVSP 3.49.0 Win64 with Python 3.11.2 on Windows 11, accessing the Python API from a local folder installation.
Current working approach (for basic geometry/STL export):
With a try/except around the degen_geom_parse imports in __init__.py to avoid a circular import between utilities.py (file in openvsp/openvsp/) and the utilities package (in python/utilities/). Basic geometry and STL export work fine.
Problem: When I run pip install -r requirements-dev.txt from the python/ folder into a fresh venv, all packages appear to install successfully (in develop mode), but degen_geom remains unimportable:
Even testing directly: .venv\Scripts\python.exe -c "import degen_geom" fails.
Question: What is the correct procedure to get degen_geom properly importable after requirements-dev.txt on Windows? I need it working for VSPAero integration later.
Thanks