-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* First catalog selection * Update elx package and tests * Refactor select method in Catalog and Tap classes * Fix runner.tap.streams to runner.tap.catalog.streams in load_assets function * Update metadata selection logic in Catalog and CLI * Update version number in pyproject.toml
- Loading branch information
1 parent
7e20d57
commit 0f2866e
Showing
11 changed files
with
216 additions
and
118 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "elx" | ||
version = "0.1.0a7" | ||
version = "0.1.0" | ||
description = "A lightweight Python interface for extracting and loading using the Singer.io spec." | ||
authors = ["Jules Huisman <[email protected]>"] | ||
readme = "README.md" | ||
|
@@ -18,8 +18,8 @@ boto3 = {version = "^1.0.0", optional = true} | |
google-cloud-storage = {version = "^2.6.0", optional = true} | ||
requests = {version = "^2.0.0", optional = true} | ||
paramiko = {version = "^2.0.0", optional = true} | ||
dagster = {version = "^1.3.14", optional = true} | ||
dagster-webserver = {version = "^1.3.14", optional = true} | ||
dagster = {version = "^1.5.6", optional = true} | ||
dagster-webserver = {version = "^1.5.6", optional = true} | ||
typer = {extras = ["all"], version = "^0.9.0"} | ||
inquirer = "^3.1.3" | ||
|
||
|
Oops, something went wrong.