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

AirbyteLib: More robust error handling, installation improvements #34572

Merged
merged 30 commits into from
Jan 30, 2024
Merged
Show file tree
Hide file tree
Changes from 21 commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
abbb256
new exception type: AirbyteConnectorNotRegisteredError
aaronsteers Jan 26, 2024
3845f5c
make constructors more resilient
aaronsteers Jan 26, 2024
9fccace
print stderr in exception text, cleanup failed install, remove editab…
aaronsteers Jan 26, 2024
a217a6e
move auto-install out of venv constructor, for easier debugging
aaronsteers Jan 26, 2024
6aa85d6
add test to assert that install failure includes pip log text
aaronsteers Jan 26, 2024
dddbc78
update docs
aaronsteers Jan 26, 2024
b1d966b
auto-format
aaronsteers Jan 26, 2024
f61152a
update docs
aaronsteers Jan 26, 2024
d665088
refactor version handling, control for side effects
aaronsteers Jan 26, 2024
809918b
fix exception handling in _get_installed_version()
aaronsteers Jan 26, 2024
4a41ffb
fix tests
aaronsteers Jan 26, 2024
bab5e06
improve thread safety
aaronsteers Jan 27, 2024
10ce077
handle quoted spaces in pip_url
aaronsteers Jan 27, 2024
063bba3
fix import sorts
aaronsteers Jan 27, 2024
ab75be4
standalone validate_config() method
aaronsteers Jan 27, 2024
8880b0b
add Source.yaml_spec property
aaronsteers Jan 27, 2024
3773149
make _yaml_spec a protected member
aaronsteers Jan 27, 2024
90918c8
fix too-limited json package_data glob
aaronsteers Jan 27, 2024
9197728
fix missing copyright str
aaronsteers Jan 28, 2024
f73f288
docstring
aaronsteers Jan 28, 2024
dd9ac99
update docs
aaronsteers Jan 28, 2024
a2bed01
revert source-github change
aaronsteers Jan 28, 2024
2e49154
updated comment
aaronsteers Jan 28, 2024
f975282
remove redundant strings
aaronsteers Jan 28, 2024
ace7208
Merge remote-tracking branch 'origin/master' into aj/airbyte-lib/inst…
aaronsteers Jan 28, 2024
8775c1b
update docs (removes empty cloud page)
aaronsteers Jan 28, 2024
f24226d
remove unused lock
aaronsteers Jan 30, 2024
7370d83
rename AirbyteConnectoNotFoundError to AirbyteConnectorExecutableNotF…
aaronsteers Jan 30, 2024
cfafccc
Merge branch 'master' into aj/airbyte-lib/install-failure-handling
aaronsteers Jan 30, 2024
8446838
allow prereleases in version check
aaronsteers Jan 30, 2024
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 airbyte-integrations/connectors/source-github/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
author_email="contact@airbyte.io",
packages=find_packages(),
install_requires=MAIN_REQUIREMENTS,
package_data={"": ["*.json", "schemas/*.json", "schemas/shared/*.json"]},
package_data={"": ["**/*.json"]},
aaronsteers marked this conversation as resolved.
Show resolved Hide resolved
extras_require={
"tests": TEST_REQUIREMENTS,
},
Expand Down
Loading
Loading