Skip to content

Commit

Permalink
feat: clean up new code and refactor a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
z3z1ma committed Mar 30, 2024
1 parent 87da181 commit e1349aa
Show file tree
Hide file tree
Showing 10 changed files with 380 additions and 363 deletions.
362 changes: 176 additions & 186 deletions poetry.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[tool.poetry]
name = "tap-airbyte"
version = "0.5.1"
version = "0.6.0"
description = "`tap-airbyte` is a Singer tap for Airbyte, built with the Meltano Singer SDK."
authors = ["Alex Butler"]
keywords = ["ELT", "Airbyte"]
license = "Apache 2.0"

[tool.poetry.dependencies]
python = "<3.11,>=3.8"
python = "<3.12,>=3.8" # airbyte cdk is broken on 3.11 due to mutable defaults in dataclasses, go figure
requests = "^2.25.1"
singer-sdk = { version = "^0.36.0" }
fs-s3fs = { version = "^1.1.1", optional = true }
Expand Down
Loading

1 comment on commit e1349aa

@JichaoS
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hey @z3z1ma I think this broke the airbyte tap, one issue is this added a '--' in the docker run command, but docker is expecting the arguments without the --

Please sign in to comment.