-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update base.py Update name of keyword argument for the call to self.client.raw.tables.create() from 'table' to 'name', which is corresponding to cognite-sdk versions ^6.0.0. * fix: version bump to v3.0.0-beta2 * fix: pydantic root-class - switch to `extra="forbid"` - which avoids unnoticed misspelled properties in configurations * fix(typing): removing old typing imports - like Dict, Set and Tuple * fix(config): set a default for `created-by` - expected it to be visble as "Owner" column in extpipe listing - but it isn't, maybe a Fusion bug? * fx: deploy - changing the processing - which wasn't working when `naming-pattern` where used - using ExtractionPipelineList and `as_external_ids()` now --------- Co-authored-by: Peter Arwanitis <[email protected]>
- Loading branch information
1 parent
ecee03c
commit db3705f
Showing
9 changed files
with
75 additions
and
71 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[tool.poetry] | ||
# matching the name of the "script" hook, used from Dockerfile | ||
name = "extpipes-cli" | ||
version = "3.0.0-beta1" | ||
version = "3.0.0-beta2" | ||
description = "A CLI to deploy CDF Extraction Pipelines" | ||
authors = ["Peter Arwanitis <[email protected]>", "Tugce Ozgur Oztetik <[email protected]>"] | ||
license = "Apache-2.0" | ||
|
@@ -55,12 +55,3 @@ extpipes-cli = "extpipes.__main__:main" | |
[build-system] | ||
requires = ["poetry>=0.12"] | ||
build-backend = "poetry.masonry.api" | ||
|
||
# 231005 pa: deact semver | ||
# [tool.semantic_release] | ||
# version_toml = [ | ||
# "pyproject.toml:tool.poetry.version" | ||
# ] | ||
version_variable = [ | ||
"src/extpipes/__init__.py:__version__", | ||
] |
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 +1 @@ | ||
__version__ = "3.0.0-beta1" | ||
__version__ = "3.0.0-beta2" |
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
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