opensuse-leap: add missing python313 package for sqlite3 - #116
Merged
Conversation
Contributor
Author
In the tpm2-pkcs11 CI we see this error:
+ tpm2_ptool init --primary-auth=mypobjpin --path=/tmp/tpm_simulator_yi0Bu2
Traceback (most recent call last):
File "<frozen runpy>", line 203, in _run_module_as_main
File "<frozen runpy>", line 88, in _run_code
File "/workspace/tpm2-pkcs11/tools/tpm2_pkcs11/tpm2_ptool.py", line 6, in <module>
from .commandlets_store import InitCommand # pylint: disable=unused-import # noqa
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/workspace/tpm2-pkcs11/tools/tpm2_pkcs11/commandlets_store.py", line 12, in <module>
from .db import Db
File "/workspace/tpm2-pkcs11/tools/tpm2_pkcs11/db.py", line 6, in <module>
import sqlite3
File "/usr/lib64/python3.13/_import_failed/sqlite3.py", line 16, in <module>
raise ImportError(f"""Module '{failed_name}' is not installed.
...<2 lines>...
to install it.""")
ImportError: Module 'sqlite3' is not installed.
Use:
sudo zypper install python313
to install it.
python3-pip is already in -dev, remove it to avoid redundancy.
Signed-off-by: Moritz Buhl <moritz.buhl@infineon.com>
moritzbuhl
force-pushed
the
ci-next-fixup-3
branch
from
August 12, 2026 09:12
45df628 to
7dab4bc
Compare
AndreasFuchsTPM
approved these changes
Aug 12, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
In the tpm2-pkcs11 CI we see this error: