#Trying to build the pulse oximeter
1 messages · Page 1 of 1 (latest)
I'm using Python 3.10.4, have upgraded pip, setuptools and wheel as of about an hour ago. pip install -r requirements.txt produces the following output:
I installed a new version of msbuild directly (16.x), as well as Visual Studio 2022 (🤢), which should include msbuild as well, no such luck
This I think is all a bleak issue: the actual library is all Python, and shouldn't need building at all
The root of the problem is found here: https://github.com/pythonnet/pythonnet/issues/1472, which is that pythonnet does not support Python 3.9 (and presumably 3.10, although they don't say that explicitly) with Python.NET 2.5. That means that it can't find an appropriate wheel file on PyPI
pythonnet is often behind on things, as you found
I was originally trying to get mypy to work (or any linter that supports type hinting, really), and it throws errors since it can't find the right dependencies
would you recommend abandoning the linter?
right in one!
If I can be more helpful without trying to get the linter working, then I won't use one for the sprints
we test with mypy (the CI uses it), but not on Windows
you can always submit the PR and have the CI do the checking
hm ok, that's not a bad idea