Skip to content

Commit

Permalink
fix(source-declarative-manifest): allow Python 3.10 (#42871)
Browse files Browse the repository at this point in the history
  • Loading branch information
natikgadzhi authored Jul 30, 2024
1 parent c9f45a0 commit 624eb79
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 51 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ data:
connectorType: source
definitionId: 64a2f99c-542f-4af8-9a6f-355f1217b436
# This version should not be updated manually - it is updated by the CDK release workflow.
dockerImageTag: 3.10.8
dockerImageTag: 3.10.9
dockerRepository: airbyte/source-declarative-manifest
# This page is hidden from the docs for now, since the connector is not in any Airbyte registries.
documentationUrl: https://docs.airbyte.com/integrations/sources/low-code
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[build-system]
requires = [ "poetry-core>=1.0.0",]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"

[tool.poetry]
version = "3.10.8"
version = "3.10.9"
name = "source-declarative-manifest"
description = "Base source implementation for low-code sources."
authors = [ "Airbyte <contact@airbyte.io>",]
authors = ["Airbyte <contact@airbyte.io>"]
license = "MIT"
readme = "README.md"
documentation = "https://docs.airbyte.com/integrations/sources/low-code"
Expand All @@ -16,13 +16,13 @@ repository = "https://github.com/airbytehq/airbyte"
include = "source_declarative_manifest"

[tool.poetry.dependencies]
python = "^3.9,<3.12"
python = "^3.10,<3.12"
airbyte-cdk = "3.9.6"

[tool.poetry.scripts]
source-declarative-manifest = "source_declarative_manifest.run:run"

[tool.poetry.group.dev.dependencies]
pytest-mock = "^3.6.1"
pytest = "^6.2"
requests-mock = "^1.9.3"
pytest-mock = "^3.14"
pytest = "^8.3"
requests-mock = "^1.12"

0 comments on commit 624eb79

Please sign in to comment.