Replies: 2 comments 1 reply
|
Hi @barower , I'm not too familiar with yocto but assuming it deploys a standard Python stack, I see no reason why a conventional build command would not work. Have a look at the build task in the /.vscode/tasks.json file for the relevant command line arguments, e.g. from the project root directory: python3 -m build . --wheel --sdist Note however that this requires setuptools >= 66.0.0 (version 59 is over 2 years old). Any further queries, get back to me |
|
I've almost given up on trying to come up with solution, but then I had exact same issue with another library that stopped using By the way, if I understood PEP517 correctly, your
|
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
I'm trying to write a yocto recipe for
pynmeagps, but unfortunately none of the python building classes seem to work.python_setuptools_build_metaseems most appropriate based on yourpyproject.toml, but I always end up having following result files:In yocto kirkstone,
setuptools's version is 59.5.0. Downgradingpynmeapsto 1.0.23, which declares to be using older version ofsetuptoolsresult in same storyWhat commands should be executed to build the package? This way maybe I could be able to tweak the recipe
With kind regards
All reactions