Skip to content

Commit eebd88e

Browse files
Release v.3.58.1 (#1337)
2 parents 741d778 + 855fcfe commit eebd88e

18 files changed

+663
-171
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
# Changelog
2+
# Version 3.58.1 (2023-12-15)
3+
## Added
4+
* Support to export all projects and all model runs to `export_v2` for a `dataset` and a `slice`
5+
## Notebooks
6+
* Update exports v2 notebook to include methods that return `ExportTask`
27

38
# Version 3.58.0 (2023-12-11)
49
## Added

CONTRIB.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ review the following considerations before proceeding:
1212
improvements to functions within the schema/ package.
1313
* Please ensure that any new libraries are compliant with the Apache license that governs the Labelbox SDK.
1414
* Ensure that you update any relevant docstrings and comments within your code
15+
* Ensure that any new python components like classes, methods etc that need to feature in labelbox documentation have entries in the file [index.rst](https://github.com/Labelbox/labelbox-python/blob/develop/docs/source/index.rst). Also make sure you run `make html` locally in the `docs` folder to check if the documentation correctly updated according to the docstrings in the code added.
1516

1617
## Repository Organization
1718

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
copyright = '2021, Labelbox'
2222
author = 'Labelbox'
2323

24-
release = '3.58.0'
24+
release = '3.58.1'
2525

2626
# -- General configuration ---------------------------------------------------
2727

examples/annotation_import/conversational.ipynb

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -362,9 +362,9 @@
362362
"ontology_builder = lb.OntologyBuilder(\n",
363363
" tools=[\n",
364364
" lb.Tool(tool=lb.Tool.Type.NER,name=\"ner\"),\n",
365-
" ],\n",
366-
" classifications=[\n",
367-
" lb.Classification(\n",
365+
" ], \n",
366+
" classifications=[ \n",
367+
" lb.Classification( \n",
368368
" class_type=lb.Classification.Type.TEXT,\n",
369369
" scope=lb.Classification.Scope.INDEX,\n",
370370
" name=\"text_convo\"),\n",
@@ -587,11 +587,11 @@
587587
{
588588
"metadata": {},
589589
"source": [
590-
"# Upload label for this data row in project\n",
590+
"# Upload label for this data row in project \n",
591591
"upload_job = lb.LabelImport.create_from_objects(\n",
592-
" client = client,\n",
593-
" project_id = project.uid,\n",
594-
" name=\"label_import_job\"+str(uuid.uuid4()),\n",
592+
" client = client, \n",
593+
" project_id = project.uid, \n",
594+
" name=\"label_import_job\"+str(uuid.uuid4()), \n",
595595
" labels=label)\n",
596596
"\n",
597597
"upload_job.wait_until_done()\n",

0 commit comments

Comments
 (0)