Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #388 +/- ##
==========================================
+ Coverage 76.96% 78.81% +1.84%
==========================================
Files 29 29
Lines 3464 3464
Branches 543 543
==========================================
+ Hits 2666 2730 +64
+ Misses 565 549 -16
+ Partials 233 185 -48 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Contributor
|
Why was our previous upper bound 3.12? Should we maybe not increment to 3.13 first? 😆 |
dionhaefner
pushed a commit
that referenced
this pull request
Nov 10, 2025
#### Relevant issue or PR The docs build CI was failing because `setup-python` with `python-version-file: "pyproject.toml"` selects the latest available Python version (3.14), which is incompatible with PyO3 v0.24.0 used by pydantic-core. #### Description of changes Bound python to <3.14 until we finalize #388 and add official 3.14 support. #### Testing done CI
Contributor
|
Got a few incompatibilities still, and a resource warning from SQLite3 (I assume via MLFlow) that seems benign and safe to ignore. More information:
Most importantly, all of those are related to testing specifically so users should already be able to run Tesseract Core with Python3.14. |
Contributor
|
jsf should be gtg once this is addressed: ghandic/jsf#137 |
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.
Relevant issue or PR
Tests ran only up to python 3.13, we should test on 3.14 as well
Description of changes
Testing done