Skip to content

Commit

Permalink
Fix normalization builds (#26930)
Browse files Browse the repository at this point in the history
  • Loading branch information
evantahler committed Jun 2, 2023
1 parent ecddb36 commit 4dd9fe0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion airbyte-integrations/bases/base-normalization/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -12,7 +13,7 @@
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={
Expand Down

0 comments on commit 4dd9fe0

Please sign in to comment.