Add Python 3.13 and 3.14 support, bump to 0.8.0 - #68
Merged
daniel-thom merged 6 commits intoJul 29, 2026
Conversation
- Update requires-python upper bound from <3.14 to <3.15 - Add Python 3.13 and 3.14 classifiers - Remove stale Python 3.10 classifier (min is 3.11) - Bump version from 0.7.0 to 0.8.0 - All 263 tests pass on Python 3.12, 3.13, and 3.14
Collaborator
|
@AadilLatif The URL for spark needs to be updated to https://archive.apache.org/dist/spark/spark-4.0.1/spark-4.0.1-bin-hadoop3.tgz. Can you make the change in .github/workflows/ci.yml? |
- Spark 4.0.1 was removed from Apache mirrors (404) - Update to Spark 4.0.4 (latest 4.0.x available) - Add Python 3.14 to the test matrix
Collaborator
Author
Should I just update to 4.0.4 instead @daniel-thom ? |
duckdb ~= 1.1.0 only ships wheels up to cp313. Building from source fails due to ICU C++ compilation errors. Supporting 3.14 requires migrating duckdb.typing API (removed in duckdb 1.2+), which is out of scope for this PR. Keep Python 3.13 support (tested, works).
- Relax duckdb constraint from ~=1.1.0 to >=1.1.0 - Add duckdb/types.py compat layer for duckdb.typing removal in 1.2+ - Update models.py and csv_io.py to use compat layer - Add Python 3.14 to requires-python, classifiers, and CI matrix - Update Spark 4.0.1 -> 4.0.4 in CI (old version removed from mirrors) - All 263 tests pass on Python 3.12/duckdb 1.1.3 and 3.14/duckdb 1.5.5
duckdb 1.5+ has cp314 wheels on all platforms and uses the new sqltype() API. No need for the try/except duckdb.typing fallback.
daniel-thom
approved these changes
Jul 29, 2026
github-actions Bot
pushed a commit
that referenced
this pull request
Jul 29, 2026
Add Python 3.13 and 3.14 support, bump to 0.8.0
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
Adds support for Python 3.13 and 3.14.
Changes
requires-pythonupper bound from<3.14to<3.15Python :: 3.13andPython :: 3.14classifiersPython :: 3.10classifier (minimum is 3.11)Testing
All 263 tests pass on:
One new deprecation warning on 3.14 in
csv_io.py:'_UnionGenericAlias' is deprecated and slated for removal in Python 3.17— not blocking, can be addressed separately.