1
0
mirror of synced 2025-12-30 12:04:43 -05:00

🎉 Python CDK: change minimum python version to 3.7.0 (#3692)

* changed python version to 3.7.0 in cdk

* updated Python version in Github Actions
This commit is contained in:
Yaroslav Dudar
2021-05-28 21:08:53 +03:00
committed by GitHub
parent 07d7420731
commit c49ff40754
5 changed files with 12 additions and 8 deletions

View File

@@ -35,7 +35,7 @@ README = (HERE / "README.md").read_text()
setup(
name="airbyte-cdk",
version="0.1.3",
version="0.1.4",
description="A framework for writing Airbyte Connectors.",
long_description=README,
long_description_content_type="text/markdown",
@@ -72,7 +72,7 @@ setup(
"PyYAML==5.4",
"requests",
],
python_requires=">=3.7.9",
python_requires=">=3.7.0",
extras_require={
"dev": [
"MyPy==0.812",