1
0
mirror of synced 2025-12-25 02:09:19 -05:00

allow importing IncrementalMixin from airbyte_cdk.sources.streams (#11858)

* allow importing IncrementalMixin from airbyte_cdk.sources.streams

* format file

* update docs with hint on where to import IncrementalMixin from

* bump cdk version to 0.1.54

* update changelog

* only build python 3.9

* update changelog with python dep bump
This commit is contained in:
Pedro S. Lopez
2022-04-14 11:42:57 -07:00
committed by GitHub
parent edd2fae49c
commit a6a6be2588
4 changed files with 8 additions and 5 deletions

View File

@@ -1,5 +1,9 @@
# Changelog
## 0.1.54
- Add ability to import `IncrementalMixin` from `airbyte_cdk.sources.streams`.
- Bumped minimum supported Python version to 3.9.
## 0.1.53
Remove a false positive error logging during the send process.

View File

@@ -3,6 +3,6 @@
#
# Initialize Streams Package
from .core import Stream
from .core import IncrementalMixin, Stream
__all__ = ["Stream"]
__all__ = ["IncrementalMixin", "Stream"]

View File

@@ -15,7 +15,7 @@ README = (HERE / "README.md").read_text()
setup(
name="airbyte-cdk",
version="0.1.53",
version="0.1.54",
description="A framework for writing Airbyte Connectors.",
long_description=README,
long_description_content_type="text/markdown",
@@ -33,8 +33,6 @@ setup(
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: MIT License",
# Python Version Support
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
keywords="airbyte connector-development-kit cdk",