-
Notifications
You must be signed in to change notification settings - Fork 40
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
Feat: Add pip_url
support in CLI
#416
Conversation
pip_url
support in clipip_url
support in CLI
📝 WalkthroughWalkthroughThe changes in this pull request enhance the command-line interface (CLI) of PyAirbyte by introducing a new optional parameter, Changes
Possibly related PRs
What do you think about these related changes? Do they seem like they could complement your updates? Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 1
🧹 Outside diff range and nitpick comments (1)
airbyte/cli.py (1)
309-312
: Typo in help string: 'a anything' should be 'anything'There's a small typo in the help text for the
--pip-url
option. It currently reads "This can be a anything pip accepts". Would you like to correct it to "This can be anything pip accepts"? Wdyt?
Realized when I went to replace the legacy
airbyte-lib-validate-source
CLI thatairbyte-ci
calls that the legacy CLI expects a connector directory. Pip URL can play this role.Once migrated to this new CLI, we can delete the
validate.py
module in PyAirbyte.Summary by CodeRabbit
--pip-url
option in the CLI forvalidate
andbenchmark
commands, allowing users to specify custom installation sources for connectors.