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 |
Beta Was this translation helpful? Give feedback.
-
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
|
Beta Was this translation helpful? Give feedback.
-
I'm trying to write a yocto recipe for
pynmeagps
, but unfortunately none of the python building classes seem to work.python_setuptools_build_meta
seems 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. Downgradingpynmeaps
to 1.0.23, which declares to be using older version ofsetuptools
result 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
Beta Was this translation helpful? Give feedback.
All reactions