Tags: cognitedata/inso-extpipes-cli
Tags
fix: poetry/docker build fixed - the requirements.txt was missing most dependencies - making a run fail with ``` File "/app/incubator/extpipes_cli/__main__.py", line 47, in <module> import pandas as pd ModuleNotFoundError: No module named 'pandas' ``` - recreated poetry.lock and tested docker build and run locally - the branch will be used as v2.2.3 tagged release, not conflicting with `master` being on v3-beta
Update base.py (#30) * 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]>