Support Python 3.13 and add fetch APIs (fetchone, fetchmany, fetchall)#971
Merged
bimalkjha merged 1 commit intoibmdb:masterfrom Dec 2, 2024
Merged
Support Python 3.13 and add fetch APIs (fetchone, fetchmany, fetchall)#971bimalkjha merged 1 commit intoibmdb:masterfrom
bimalkjha merged 1 commit intoibmdb:masterfrom
Conversation
Signed-off-by: Balram Choudhary <bchoudhary@rocketsoftware.com>
This was referenced Sep 9, 2025
alexanderankin
added a commit
to testcontainers/testcontainers-python
that referenced
this pull request
Sep 9, 2025
## Description `testcontainers-python` is not compatible with python 3.13 because of several packages. ## Related issues Fixes #870 ## Packages update - bump cffi: python-cffi/cffi#24 - bump psycopg2: psycopg/psycopg2#1695 - bump trio: python-trio/trio#2955 - bump pytest: pytest-dev/pytest#12334 - bump pymilvus: milvus-io/pymilvus#2684 - bump twine: pypa/twine#1184 - bump cryptography: pyca/cryptography#11491 - bump greenlet: python-greenlet/greenlet@9497948 (python-greenlet/greenlet#392) - bump grpcio: grpc/grpc#36201 - bump httpx: encode/httpx#3460 - bump ibm-db: ibmdb/python-ibmdb#971 - bump orjson: https://github.com/ijl/orjson/releases/tag/3.10.15 - bump pandas: https://github.com/pandas-dev/pandas/releases/tag/v2.2.3 >⚠️ `cryptography` is not compatible with python `3.9.0` and `3.9.1` to be able to update to the version supporting Python 3.13 we have to exclude those version, meaning the minimum version is now 3.9.2 included. --------- Signed-off-by: axel7083 <42176370+axel7083@users.noreply.github.com> Co-authored-by: David Ankin <daveankin@gmail.com>
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.
This pull request introduces support for Python 3.13 and enhances the database interaction functionality by adding support for the following fetch APIs:
You can follow below example to use fetch APIs
Py_UNICODE - Deprecated since version 3.13, will be removed in version 3.15.
So used wchar_t in place of Py_UNICODE.
Bug Fixes:
debugging.