Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
292d3d1
feat: add Python 3.12 and 3.13 support
devin-ai-integration[bot] Jul 31, 2025
e575987
chore: apply formatting fixes to README.md
devin-ai-integration[bot] Jul 31, 2025
1ff7e7a
Update airbyte_cdk/manifest_migrations/README.md
aaronsteers Jul 31, 2025
8b52517
Apply suggestion from @aaronsteers
aaronsteers Jul 31, 2025
8b41044
Apply suggestion from @aaronsteers
aaronsteers Jul 31, 2025
57ded9d
chore: remove deprecated airbyte_ci configuration section
devin-ai-integration[bot] Jul 31, 2025
fa85f0c
chore: update pandas to 2.2.3 for Python 3.13 compatibility
devin-ai-integration[bot] Jul 31, 2025
9bde773
fix: update fastavro to support Python 3.13 compilation
devin-ai-integration[bot] Jul 31, 2025
d2f1dfd
fix: update cohere to 5.16.1 to support Python 3.12/3.13 and allow ne…
devin-ai-integration[bot] Jul 31, 2025
6536aa4
fix: update fastavro to 1.11.0+ for Python 3.13 support and skip conc…
devin-ai-integration[bot] Jul 31, 2025
841f7ea
fix: update exception handler test for Python 3.13 traceback format c…
devin-ai-integration[bot] Jul 31, 2025
24141d2
fix: apply ruff formatting to test file
devin-ai-integration[bot] Jul 31, 2025
33fe225
Merge branch 'devin/1753929340-python-3.13-support' of https://git-ma…
devin-ai-integration[bot] Jul 31, 2025
55f3852
fix: apply ruff formatting to exception handler test
devin-ai-integration[bot] Jul 31, 2025
f186b3a
fix: correct Python 3.13 traceback format - caret points to 'raise 1'…
devin-ai-integration[bot] Jul 31, 2025
c78206f
refactor: simplify Python 3.13 traceback test using string contains c…
devin-ai-integration[bot] Jul 31, 2025
858a28d
fix: apply ruff formatting to simplified traceback test
devin-ai-integration[bot] Jul 31, 2025
30392be
fix: address PR feedback - add detailed SQLite threading explanation …
devin-ai-integration[bot] Jul 31, 2025
f101717
fix: update exception handler test for Python 3.13 traceback format c…
devin-ai-integration[bot] Jul 31, 2025
013db15
fix: make exception handler test compatible with Python 3.13 tracebac…
devin-ai-integration[bot] Jul 31, 2025
c15b463
resolve: merge conflicts with main - preserve Python 3.12/3.13 suppor…
devin-ai-integration[bot] Aug 28, 2025
f344462
fix: regenerate poetry.lock and resolve formatting issues after merge…
devin-ai-integration[bot] Aug 28, 2025
c985551
Merge branch 'main' into devin/1753929340-python-3.13-support
aaronsteers Aug 28, 2025
6a44f70
revert formatting
aaronsteers Aug 28, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/connector-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ jobs:
if: steps.no_changes.outputs.status != 'cancelled'
uses: actions/setup-python@v5
with:
python-version: "3.11"
python-version: "3.12"
Comment thread
aaronsteers marked this conversation as resolved.
Outdated

- name: Set up `uv`
if: steps.no_changes.outputs.status != 'cancelled'
Expand Down
6 changes: 1 addition & 5 deletions .github/workflows/pytest_matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,7 @@ jobs:
(github.event_name == 'push' && github.ref == 'refs/heads/main')
strategy:
matrix:
python-version: [
"3.10",
"3.11",
# "3.12", # `requests-cache` blocker: https://github.com/airbytehq/airbyte-python-cdk/issues/299
]
python-version: ["3.10", "3.11", "3.12", "3.13"]
Comment thread
aaronsteers marked this conversation as resolved.
Outdated
os: [
Ubuntu,
# Windows, # For now, we don't include Windows in the test matrix.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-command.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
needs: [start-workflow]
strategy:
matrix:
python-version: ["3.10", "3.11"]
python-version: ["3.10", "3.11", "3.12", "3.13"]
os: [
Ubuntu,
# Windows, # For now, we don't include Windows in the test matrix.
Expand Down
Loading
Loading