-
Notifications
You must be signed in to change notification settings - Fork 67
SystemError: incompatible with python 3.10 #107
New issue
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
Comments
13 tasks
Just ran in to this as well, would love to see a new release tagged with the fix incorporated. |
Yeah, this will be fixed in the next release. |
dferencz-dev
pushed a commit
to Ezurio/wb-buildroot
that referenced
this issue
Sep 22, 2022
Python 3.10 dropped support for the use of 'int' in format strings for PyArg_ParseTuple() and Py_BuildValue() in favor of using 'Py_ssize_t': https://bugs.python.org/issue40943 This was addressed in python-systemd 'master', but no new releases are available yet: systemd/python-systemd#107 This change includes the patch which switches to using 'Py_ssize_t': systemd/python-systemd@c71bbac Bug 22270
jhatler
pushed a commit
to rfpros/wb-buildroot
that referenced
this issue
Feb 2, 2023
Python 3.10 dropped support for the use of 'int' in format strings for PyArg_ParseTuple() and Py_BuildValue() in favor of using 'Py_ssize_t': https://bugs.python.org/issue40943 This was addressed in python-systemd 'master', but no new releases are available yet: systemd/python-systemd#107 This change includes the patch which switches to using 'Py_ssize_t': systemd/python-systemd@c71bbac Bug 22270
sbraneky
pushed a commit
to sbraneky/wb-buildroot
that referenced
this issue
Feb 3, 2023
Python 3.10 dropped support for the use of 'int' in format strings for PyArg_ParseTuple() and Py_BuildValue() in favor of using 'Py_ssize_t': https://bugs.python.org/issue40943 This was addressed in python-systemd 'master', but no new releases are available yet: systemd/python-systemd#107 This change includes the patch which switches to using 'Py_ssize_t': systemd/python-systemd@c71bbac Bug 22270
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this issue
Feb 21, 2023
Includes bugfix from v234 which won't run on python3.10 See: systemd/python-systemd#107 Removes patches now no longer required as they are implemented in v235 drop setting md5 checksum for src_uri as it is no longer needed rename patch directory to match recipe name as python2 version of recipe is gone V235 released to PyPI on 11 Feb 23 https://pypi.org/project/systemd-python/235/ Signed-off-by: Samuel Cook <[email protected]> Signed-off-by: Khem Raj <[email protected]>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this issue
Feb 21, 2023
Includes bugfix from v234 which won't run on python3.10 See: systemd/python-systemd#107 Removes patches now no longer required as they are implemented in v235 drop setting md5 checksum for src_uri as it is no longer needed rename patch directory to match recipe name as python2 version of recipe is gone V235 released to PyPI on 11 Feb 23 https://pypi.org/project/systemd-python/235/ Signed-off-by: Samuel Cook <[email protected]> Signed-off-by: Khem Raj <[email protected]>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this issue
Feb 22, 2023
Includes bugfix from v234 which won't run on python3.10 See: systemd/python-systemd#107 Removes patches now no longer required as they are implemented in v235 drop setting md5 checksum for src_uri as it is no longer needed rename patch directory to match recipe name as python2 version of recipe is gone V235 released to PyPI on 11 Feb 23 https://pypi.org/project/systemd-python/235/ Signed-off-by: Samuel Cook <[email protected]> Signed-off-by: Khem Raj <[email protected]>
daregit
pushed a commit
to daregit/yocto-combined
that referenced
this issue
May 22, 2024
Includes bugfix from v234 which won't run on python3.10 See: systemd/python-systemd#107 Removes patches now no longer required as they are implemented in v235 drop setting md5 checksum for src_uri as it is no longer needed rename patch directory to match recipe name as python2 version of recipe is gone V235 released to PyPI on 11 Feb 23 https://pypi.org/project/systemd-python/235/ Signed-off-by: Samuel Cook <[email protected]> Signed-off-by: Khem Raj <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When using package with python3.10 this error occurs on using
systemd.journal.Reader
:See: https://docs.python.org/3/c-api/arg.html#strings-and-buffers
See: https://docs.python.org/3/whatsnew/3.10.html#id2
This error seems to be fixed in this commit, so new release needs to be made.
The text was updated successfully, but these errors were encountered: