Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: demonstrate pre-commit auto-formatting changes #271

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
8f3f2d2
feat: add pre-commit config for airbyte-python-cdk
devin-ai-integration[bot] Jan 25, 2025
1f05069
chore: add LICENSE_SHORT file for license header checks
devin-ai-integration[bot] Jan 25, 2025
203a691
chore: update LICENSE_SHORT year to 2025
devin-ai-integration[bot] Jan 25, 2025
0952422
chore: simplify ruff config to use repo settings
devin-ai-integration[bot] Jan 25, 2025
bbfd75f
feat: add TOML pre-commit hooks for syntax checking and sorting
devin-ai-integration[bot] Jan 25, 2025
dce36ed
chore: sort pyproject.toml with toml-sort
devin-ai-integration[bot] Jan 25, 2025
10737cf
test: demonstrate pre-commit auto-formatting changes
devin-ai-integration[bot] Jan 25, 2025
5a54e75
chore: remove toml-sort hook, keep check-toml
devin-ai-integration[bot] Jan 25, 2025
6232222
Apply suggestions from code review
aaronsteers Jan 25, 2025
6d58e1c
chore: remove toml-sort and revert pyproject.toml changes
devin-ai-integration[bot] Jan 25, 2025
0385d42
chore: revert pyproject.toml to original state from main
devin-ai-integration[bot] Jan 25, 2025
ab5ab5d
Merge branch 'devin/1737777544-add-pre-commit-cdk' into devin/1737779…
aaronsteers Jan 25, 2025
91f6c6e
chore: restore pyproject.toml to match main branch exactly
devin-ai-integration[bot] Jan 25, 2025
5a40d6f
chore: revert poetry.lock to match main branch
devin-ai-integration[bot] Jan 25, 2025
32470ea
Merge branch 'main' into devin/1737777544-add-pre-commit-cdk
aaronsteers Jan 25, 2025
a5d8804
Merge branch 'devin/1737777544-add-pre-commit-cdk' into devin/1737779…
aaronsteers Jan 25, 2025
ac0ddfb
Merge branch 'main' into devin/1737779725-test-pre-commit-config
aaronsteers Jan 29, 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
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# Copyright (c) 2025 Airbyte, Inc., all rights reserved.

import csv
import gzip
import json
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# Copyright (c) 2025 Airbyte, Inc., all rights reserved.

# generated by datamodel-codegen:
# filename: declarative_component_schema.yaml

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# Copyright (c) 2025 Airbyte, Inc., all rights reserved.

from dataclasses import InitVar, dataclass
from typing import Any, Dict, List, Mapping, Optional, Union

Expand Down
2 changes: 2 additions & 0 deletions airbyte_cdk/utils/slice_hasher.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# Copyright (c) 2025 Airbyte, Inc., all rights reserved.

import hashlib
import json
from typing import Any, Final, Mapping, Optional
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# Copyright (c) 2025 Airbyte, Inc., all rights reserved.

import pytest

from airbyte_cdk.sources.declarative.transformations.dpath_flatten_fields import DpathFlattenFields
Expand Down
2 changes: 2 additions & 0 deletions unit_tests/sources/streams/concurrent/test_helpers.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# Copyright (c) 2025 Airbyte, Inc., all rights reserved.

import pytest

from airbyte_cdk.sources.streams.concurrent.helpers import get_primary_key_from_stream
Expand Down
Loading