Skip to content

Commit 9bde773

Browse files
fix: update fastavro to support Python 3.13 compilation
Co-Authored-By: AJ Steers <[email protected]>
1 parent fa85f0c commit 9bde773

File tree

4 files changed

+4
-9
lines changed

4 files changed

+4
-9
lines changed

.github/workflows/pytest_matrix.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,7 @@ jobs:
2727
(github.event_name == 'push' && github.ref == 'refs/heads/main')
2828
strategy:
2929
matrix:
30-
python-version: [
31-
"3.10",
32-
"3.11",
33-
"3.12",
34-
"3.13",
35-
]
30+
python-version: ["3.10", "3.11", "3.12", "3.13"]
3631
os: [
3732
Ubuntu,
3833
# Windows, # For now, we don't include Windows in the test matrix.

airbyte_cdk/manifest_migrations/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ This directory contains the logic and registry for manifest migrations in the Ai
2121
3. **Register the Migration:**
2222
- Open `migrations/registry.yaml`.
2323
- Add an entry under the appropriate version, or create a new version section if needed.
24-
- Version can be: "*", "==6.48.3", "~=1.2", ">=1.0.0,<2.0.0", "6.48.3"
24+
- Version can be: "\*", "==6.48.3", "~=1.2", ">=1.0.0,<2.0.0", "6.48.3"
2525
- Each migration entry should include:
2626
- `name`: The filename (without `.py`)
2727
- `order`: The order in which this migration should be applied for the version

poetry.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ wcmatch = "10.0"
6262
# Extras depedencies
6363
avro = { version = ">=1.11.2,<1.13.0", optional = true } # TODO: Move into dev dependencies if only used in tests
6464
cohere = { version = "4.21", optional = true }
65-
fastavro = { version = "~1.8.0", optional = true }
65+
fastavro = { version = ">=1.8.0,<2.0.0", optional = true }
6666
langchain = { version = "0.1.16", optional = true }
6767
langchain_core = { version = "0.1.42", optional = true }
6868
markdown = { version = "*", optional = true } # TODO: Remove if unused

0 commit comments

Comments
 (0)