feat: Python 3.14 support#678
Closed
FomalhautWeisszwerg wants to merge 10 commits into
Closed
Conversation
Because `asyncio.iscoroutinefunction` has been deprecated. So we need to use `inspect.iscoroutinefunction()` instead. To get more detail, see <https://github.com/python/cpython/blob/3.14/Doc/deprecations/pending-removal-in-3.16.rst?plain=1#L21-L23>
`datetime.datetime.utcnow()` has been deprecated and planned to removal. Fixed by replacing it with recommended method. To get more detail, see <https://github.com/python/cpython/blob/3.14/Doc/deprecations/pending-removal-in-future.rst?plain=1#L55-L56>
Since get_running_loop() is a thin wrapper function for _get_running_loop(), it is unlikely to have much impact to performance.
This was referenced Apr 1, 2026
Contributor
|
@FomalhautWeisszwerg please stop. This is not how we certify python 3.14 as an acceptable upgrade. It needs to go through a validation process that involves several repos. Including private ones. If it is important to you please keep on your own Fork. |
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.
Summary
Add Python 3.14 support. Now unstructured-ingest supports 3.11, 3.12, 3.13 and 3.14.
and some chores.
Detail
asyncio.iscoroutinefunctionasyncio.iscoroutinefunctionhas been deprecated so we need to useinspect.iscoroutinefunctioninstead.datetime.datetime.utcnowdatetime.datetime.utcnowhas been deprecated so replacing it with recommended method.