Skip to content

Commit 13dff3d

Browse files
Fixed code env issues
- Updated code environment to include only Python 3.9-11, set core packages to AUTO, and added pandas>=1.3.0 to requirements - Added explicit instructions to remove comments from .json config files
1 parent 01ce235 commit 13dff3d

8 files changed

Lines changed: 16 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
# Changelog
22

3+
## Version 3.0.1 - Fixed Code Env Issues - 2025-12-15
4+
- Updated code environment to include only Python 3.9-11, set core packages to AUTO, and added pandas>=1.3.0 to requirements
5+
- Added explicit instructions to remove comments from .json config files
6+
37
## Version 3.0.0 - Open Source Release - 2025-12-15
48
- Updated license from Proprietary to Apache 2.0

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ The installation setup for this connector requires:
1818
* Network connections to Dataiku and Collibra instances
1919

2020
### Installation and Configuration
21-
Please refer to [Dataiku Plugin for Collibra Installation Guide.pdf](docs/Dataiku_Plugin_for_Collibra_Installation_Guide.pdf) for detailed instructions on how to install and configure the Collibra Plugin. Templates for the configuration settings can be found in [collibra.json](docs/collibra.json), [assetTypes.json](docs/assetTypes.json), and [relationTypes.json](docs/relationTypes.json).
21+
Please refer to [Dataiku Plugin for Collibra Installation Guide.pdf](docs/Dataiku_Plugin_for_Collibra_Installation_Guide.pdf) for detailed instructions on how to install and configure the Collibra Plugin. Templates for the configuration settings can be found in [collibra.json](docs/collibra.json), [assetTypes.json](docs/assetTypes.json), and [relationTypes.json](docs/relationTypes.json). Remove the comments from the configuration files before adding them to the plugin configuration.
2222

2323
### License
2424
Copyright 2025 Dataiku SAS

code-env/python/desc.json

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,9 @@
22
"acceptedPythonInterpreters": [
33
"PYTHON39",
44
"PYTHON310",
5-
"PYTHON311",
6-
"PYTHON312",
7-
"PYTHON313",
8-
"PYTHON314"
5+
"PYTHON311"
96
],
7+
"corePackagesSet": "AUTO",
108
"forceConda": false,
119
"installCorePackages": true,
1210
"installJupyterSupport": false
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
pandas>=1.3.0

docs/assetTypes.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
//
2+
// REMOVE ALL COMMENTS BEFORE ADDING TO SETTINGS IN THE CONNECTOR CONFIGURATION
3+
//
24
// NOTE: THIS CAN BE CUSTOMIZED BEFORE EXECUTING THE CONNECTOR
35
// If it runs with the predefined config, those assets are created with that naming and every occurence will need
46
// to be deleted in Collibra to change it (i.e., every asset type, domain type, attributes, attribute type, relation, relation type)

docs/collibra.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
//
2+
// REMOVE ALL COMMENTS BEFORE ADDING TO SETTINGS IN THE CONNECTOR CONFIGURATION
3+
//
14
{
25
// NOTE: You may need to add the Resource Id column to the views in Settings in order to see it
36
// Click the small grid within the view --> Columns --> Check the Resource Id box

docs/relationTypes.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
//
2+
// REMOVE ALL COMMENTS BEFORE ADDING TO SETTINGS IN THE CONNECTOR CONFIGURATION
3+
//
24
// NOTE: THIS CAN BE CUSTOMIZED BEFORE EXECUTING THE CONNECTOR
35
// If it runs with the predefined config, those assets are created with that naming and every occurence will need
46
// to be deleted in Collibra to change it (i.e., every asset type, domain type, attributes, attribute type, relation, relation type)

plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"id": "collibra-connector",
3-
"version": "3.0.0",
3+
"version": "3.0.1",
44
"meta": {
55
"label": "Collibra Connector",
66
"description": "Loads Dataiku asset metadata into Collibra",

0 commit comments

Comments
 (0)