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

Release CDK 0.1.1. #3360

Merged
merged 7 commits into from
May 11, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
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
Prev Previous commit
Next Next commit
Move all sources that were previously using pre-release of airbyte-cd…
…k or test versions of airbyte-cdk to the airbyte-cdk:0.1.1.
  • Loading branch information
davinchia committed May 11, 2021
commit 0e814ad7fa518b1e65a0e9d1b4781f3f9c695774
2 changes: 1 addition & 1 deletion airbyte-integrations/bases/source-acceptance-test/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
import setuptools

MAIN_REQUIREMENTS = [
"airbyte-cdk==0.1.0rc5",
"airbyte-cdk==0.1.1",
"docker==4.4.4",
"PyYAML==5.4.0",
"inflection==0.5.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@
author_email="contact@airbyte.io",
packages=find_packages(),
package_data={"": ["*.json", "schemas/*.json"]},
install_requires=["airbyte-cdk-test", "pendulum>=2,<3"],
install_requires=["airbyte-cdk==0.1.1", "pendulum>=2,<3"],
)
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
install_requires=[
"tap-github @ https://github.com/airbytehq/tap-github/tarball/v1.9.4-airbyte",
"requests==2.20.0",
"airbyte-cdk-test==0.1.0rc3",
"airbyte-cdk==0.1.1",
],
package_data={"": ["*.json"]},
)
2 changes: 1 addition & 1 deletion airbyte-integrations/connectors/source-slack/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@
author="Airbyte",
author_email="contact@airbyte.io",
packages=find_packages(),
install_requires=["airbyte-cdk-test", "pytest==6.1.2", "slack_sdk==3.4.2", "pendulum>=2,<3"],
install_requires=["airbyte-cdk==0.1.1", "pytest==6.1.2", "slack_sdk==3.4.2", "pendulum>=2,<3"],
package_data={"": ["*.json"]},
)
2 changes: 1 addition & 1 deletion airbyte-integrations/connectors/source-stripe/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@
author_email="contact@airbyte.io",
packages=find_packages(),
package_data={"": ["*.json", "schemas/*.json", "schemas/shared/*.json"]},
install_requires=["airbyte-cdk==0.1.0rc5", "stripe"],
install_requires=["airbyte-cdk==0.1.1", "stripe"],
)