We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Turns out the latest Raspberry Pi OS "Bullseye" uses Python 3.9 and RPi.GPIO does not yet play along with it nicely: https://raspberrypi.stackexchange.com/a/135164.
To work around this for now, update the dependencies section [tool.poetry.dependencies] in pyproject.toml by changing:
[tool.poetry.dependencies]
pyproject.toml
"RPi.GPIO" = "^0.7.0"
To:
"RPi.GPIO" = [ {version = "^0.7.0", python = "<3.9"}, {version = "^0.7.1a4*", python = "^3.9", allow-prereleases = true} ]
Then run poetry update.
poetry update
(Interestingly the asterisk at the end is needed for it to work)
Will push the changes for this after testing it a bit more.
The text was updated successfully, but these errors were encountered:
I ran into this problem today, but it's easier to fix now 0.7.1 is out. Change that requirement to: "RPi.GPIO" = "^0.7.1"
"RPi.GPIO" = "^0.7.1"
Sorry, something went wrong.
No branches or pull requests
Turns out the latest Raspberry Pi OS "Bullseye" uses Python 3.9 and RPi.GPIO does not yet play along with it nicely: https://raspberrypi.stackexchange.com/a/135164.
To work around this for now, update the dependencies section
[tool.poetry.dependencies]
inpyproject.toml
by changing:To:
Then run
poetry update
.(Interestingly the asterisk at the end is needed for it to work)
Will push the changes for this after testing it a bit more.
The text was updated successfully, but these errors were encountered: