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

Fix normalization builds (#26930)

This commit is contained in:
Evan Tahler
2023-06-02 07:41:40 -07:00
committed by GitHub
parent ecddb3634d
commit 4dd9fe0c1c

View File

@@ -2,6 +2,7 @@
# Copyright (c) 2023 Airbyte, Inc., all rights reserved.
#
# Note: cattrs is pinned to the last known working version which does not have conflicts with typing_extensions. Learn more https://airbytehq-team.slack.com/archives/C03C4AVJWG4/p1685546430990049
import setuptools
@@ -12,7 +13,7 @@ setuptools.setup(
author_email="contact@airbyte.io",
url="https://github.com/airbytehq/airbyte",
packages=setuptools.find_packages(),
install_requires=["airbyte-cdk", "pyyaml", "jinja2", "types-PyYAML"],
install_requires=["airbyte-cdk", "pyyaml", "jinja2", "types-PyYAML", "cattrs==22.2.0"],
package_data={"": ["*.yml"]},
setup_requires=["pytest-runner"],
entry_points={