Skip to content

Commit

Permalink
chore: merge release/2.153.1 into main (#1675)
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
6 people authored Mar 29, 2024
1 parent 767b059 commit bbe436b
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
5 changes: 4 additions & 1 deletion docs/sdk/tutorials/importing_multilayer_geosat_assets.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,10 @@ If you are unsure how to look up your API key, refer to [https://docs.kili-techn
```python
api_key = "YOUR_API_KEY"
api_endpoint = "https://cloud.kili-technology.com/api/label/v2/graphql"
kili = Kili(api_endpoint=api_endpoint, api_key=api_key, verify=True)
kili = Kili(
# api_endpoint=api_endpoint, api_key=api_key, verify=True
# the line above can be uncommented and changed if you are working with an on-premise version of Kili
)
```

### Creating an image Kili project
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ requires = ["setuptools", "wheel"]

[project]
name = "kili"
version = "2.153.0"
version = "2.153.1"
description = "Python client for Kili Technology labeling tool"
readme = "README.md"
authors = [{ name = "Kili Technology", email = "[email protected]" }]
Expand Down
5 changes: 4 additions & 1 deletion recipes/importing_multilayer_geosat_assets.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,10 @@
"source": [
"api_key = \"YOUR_API_KEY\"\n",
"api_endpoint = \"https://cloud.kili-technology.com/api/label/v2/graphql\"\n",
"kili = Kili(api_endpoint=api_endpoint, api_key=api_key, verify=True)"
"kili = Kili(\n",
" # api_endpoint=api_endpoint, api_key=api_key, verify=True\n",
" # the line above can be uncommented and changed if you are working with an on-premise version of Kili\n",
")"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion src/kili/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Kili Python SDK."""

__version__ = "2.153.0"
__version__ = "2.153.1"

0 comments on commit bbe436b

Please sign in to comment.