Skip to content

Commit e3b190c

Browse files
committed
Adds supported Python versions 3.12, 3.13, 3.14
1 parent 111260b commit e3b190c

3 files changed

Lines changed: 105 additions & 95 deletions

File tree

CHANGELOG.md

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

3+
## Version 1.5.0 - Enhancement release - 2026-08-27
4+
5+
- Added supported Python versions: 3.12, 3.13, 3.14
6+
37
## Version 1.4.0 - Features release - 2026-08
48
- Mark the HERE provider as obsolete
59
- Add shared authentication presets and store sensitive credentials as password fields

code-env/python/desc.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,13 @@
55
"PYTHON38",
66
"PYTHON39",
77
"PYTHON310",
8-
"PYTHON311"
8+
"PYTHON311",
9+
"PYTHON312",
10+
"PYTHON313",
11+
"PYTHON314"
912
],
1013
"corePackagesSet": "AUTO",
1114
"forceConda": false,
1215
"installCorePackages": true,
1316
"installJupyterSupport": false
14-
}
17+
}

plugin.json

Lines changed: 96 additions & 93 deletions
Original file line numberDiff line numberDiff line change
@@ -1,111 +1,114 @@
11
{
2-
"id": "geocoder",
3-
"version": "1.4.0",
4-
5-
"meta": {
6-
"label": "Geocoder",
7-
"description": "Perform geocoding and reverse geocoding. Supports over 25 geocoding service providers, along with caching and batch options.",
8-
"author": "Dataiku (Thomas Labadie, Thibault Desfontaines)",
9-
"icon": "icon-globe",
10-
"licenseInfo": "Apache Software License",
11-
"url": "https://www.dataiku.com/dss/plugins/info/geocoder.html",
12-
"tags": ["Geospatial", "Enrichment"]
13-
},
14-
15-
"params": [
2+
"id": "geocoder",
3+
"version": "1.5.0",
4+
"meta": {
5+
"label": "Geocoder",
6+
"description": "Perform geocoding and reverse geocoding. Supports over 25 geocoding service providers, along with caching and batch options.",
7+
"author": "Dataiku (Thomas Labadie, Thibault Desfontaines)",
8+
"icon": "icon-globe",
9+
"licenseInfo": "Apache Software License",
10+
"url": "https://www.dataiku.com/dss/plugins/info/geocoder.html",
11+
"tags": [
12+
"Geospatial",
13+
"Enrichment"
14+
]
15+
},
16+
"params": [
17+
{
18+
"name": "cache_location",
19+
"type": "SELECT",
20+
"label": "Cache location",
21+
"description": "The current user is either the one running the recipe (UIF installs ) or the one running DSS (non-UIF installs)",
22+
"selectChoices": [
1623
{
17-
"name": "cache_location",
18-
"type": "SELECT",
19-
"label": "Cache location",
20-
"description": "The current user is either the one running the recipe (UIF installs ) or the one running DSS (non-UIF installs)",
21-
"selectChoices": [
22-
{
23-
"value": "original",
24-
"label": "Current User Home"
25-
},
26-
{
27-
"value": "custom",
28-
"label": "Custom"
29-
}
30-
],
31-
"defaultValue": "original"
24+
"value": "original",
25+
"label": "Current User Home"
3226
},
3327
{
34-
"name": "cache_location_custom",
35-
"type": "STRING",
36-
"label": "Custom cache location",
37-
"description": "Absolute path",
38-
"visibilityCondition": "model.cache_location == 'custom'"
28+
"value": "custom",
29+
"label": "Custom"
30+
}
31+
],
32+
"defaultValue": "original"
33+
},
34+
{
35+
"name": "cache_location_custom",
36+
"type": "STRING",
37+
"label": "Custom cache location",
38+
"description": "Absolute path",
39+
"visibilityCondition": "model.cache_location == 'custom'"
40+
},
41+
{
42+
"name": "sep_fw",
43+
"type": "SEPARATOR",
44+
"label": "Forward Geocoding Cache"
45+
},
46+
{
47+
"name": "forward_cache_size",
48+
"type": "INT",
49+
"label": "Cache size",
50+
"description": "in megabytes",
51+
"defaultValue": 1000
52+
},
53+
{
54+
"name": "forward_cache_policy",
55+
"label": "Eviction policy",
56+
"type": "SELECT",
57+
"selectChoices": [
58+
{
59+
"value": "least-recently-stored",
60+
"label": "Least Recently Stored"
3961
},
4062
{
41-
"name": "sep_fw",
42-
"type": "SEPARATOR",
43-
"label": "Forward Geocoding Cache"
63+
"value": "least-recently-used",
64+
"label": "Least Recently Used"
4465
},
4566
{
46-
"name": "forward_cache_size",
47-
"type": "INT",
48-
"label": "Cache size",
49-
"description": "in megabytes",
50-
"defaultValue": 1000
67+
"value": "least-frequently-used",
68+
"label": "Least Frequently Used"
5169
},
5270
{
53-
"name": "forward_cache_policy",
54-
"label": "Eviction policy",
55-
"type": "SELECT",
56-
"selectChoices": [
57-
{
58-
"value": "least-recently-stored",
59-
"label": "Least Recently Stored"
60-
},
61-
{
62-
"value": "least-recently-used",
63-
"label": "Least Recently Used"
64-
},
65-
{
66-
"value": "least-frequently-used",
67-
"label": "Least Frequently Used"
68-
},
69-
{
70-
"value": "none",
71-
"label": "None"
72-
}],
73-
"defaultValue": "least-recently-stored"
71+
"value": "none",
72+
"label": "None"
73+
}
74+
],
75+
"defaultValue": "least-recently-stored"
76+
},
77+
{
78+
"name": "sep_rv",
79+
"type": "SEPARATOR",
80+
"label": "Reverse Geocoding Cache"
81+
},
82+
{
83+
"name": "reverse_cache_size",
84+
"type": "INT",
85+
"label": "Cache size",
86+
"description": "in megabytes",
87+
"defaultValue": 1000
88+
},
89+
{
90+
"name": "reverse_cache_policy",
91+
"label": "Eviction policy",
92+
"type": "SELECT",
93+
"selectChoices": [
94+
{
95+
"value": "least-recently-stored",
96+
"label": "Least Recently Stored"
7497
},
7598
{
76-
"name": "sep_rv",
77-
"type": "SEPARATOR",
78-
"label": "Reverse Geocoding Cache"
99+
"value": "least-recently-used",
100+
"label": "Least Recently Used"
79101
},
80102
{
81-
"name": "reverse_cache_size",
82-
"type": "INT",
83-
"label": "Cache size",
84-
"description": "in megabytes",
85-
"defaultValue": 1000
103+
"value": "least-frequently-used",
104+
"label": "Least Frequently Used"
86105
},
87106
{
88-
"name": "reverse_cache_policy",
89-
"label": "Eviction policy",
90-
"type": "SELECT",
91-
"selectChoices": [
92-
{
93-
"value": "least-recently-stored",
94-
"label": "Least Recently Stored"
95-
},
96-
{
97-
"value": "least-recently-used",
98-
"label": "Least Recently Used"
99-
},
100-
{
101-
"value": "least-frequently-used",
102-
"label": "Least Frequently Used"
103-
},
104-
{
105-
"value": "none",
106-
"label": "None"
107-
}],
108-
"defaultValue": "least-recently-stored"
107+
"value": "none",
108+
"label": "None"
109109
}
110-
]
110+
],
111+
"defaultValue": "least-recently-stored"
112+
}
113+
]
111114
}

0 commit comments

Comments
 (0)