Skip to content

Commit bbe436b

Browse files
github-actions[bot]github-actionsHNicolasNicolas Hervéaurelienlombard
authored
chore: merge release/2.153.1 into main (#1675)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: github-actions <[email protected]> Co-authored-by: Nicolas Hervé <[email protected]> Co-authored-by: Nicolas Hervé <[email protected]> Co-authored-by: aurelienlombard <[email protected]> Co-authored-by: Aurelien Lombard <[email protected]>
1 parent 767b059 commit bbe436b

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

docs/sdk/tutorials/importing_multilayer_geosat_assets.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,10 @@ If you are unsure how to look up your API key, refer to [https://docs.kili-techn
3636
```python
3737
api_key = "YOUR_API_KEY"
3838
api_endpoint = "https://cloud.kili-technology.com/api/label/v2/graphql"
39-
kili = Kili(api_endpoint=api_endpoint, api_key=api_key, verify=True)
39+
kili = Kili(
40+
# api_endpoint=api_endpoint, api_key=api_key, verify=True
41+
# the line above can be uncommented and changed if you are working with an on-premise version of Kili
42+
)
4043
```
4144

4245
### Creating an image Kili project

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ requires = ["setuptools", "wheel"]
33

44
[project]
55
name = "kili"
6-
version = "2.153.0"
6+
version = "2.153.1"
77
description = "Python client for Kili Technology labeling tool"
88
readme = "README.md"
99
authors = [{ name = "Kili Technology", email = "[email protected]" }]

recipes/importing_multilayer_geosat_assets.ipynb

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,10 @@
6464
"source": [
6565
"api_key = \"YOUR_API_KEY\"\n",
6666
"api_endpoint = \"https://cloud.kili-technology.com/api/label/v2/graphql\"\n",
67-
"kili = Kili(api_endpoint=api_endpoint, api_key=api_key, verify=True)"
67+
"kili = Kili(\n",
68+
" # api_endpoint=api_endpoint, api_key=api_key, verify=True\n",
69+
" # the line above can be uncommented and changed if you are working with an on-premise version of Kili\n",
70+
")"
6871
]
6972
},
7073
{

src/kili/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Kili Python SDK."""
22

3-
__version__ = "2.153.0"
3+
__version__ = "2.153.1"

0 commit comments

Comments
 (0)