Skip to content

Commit b603aa7

Browse files
committed
Merge branch 'develop' into lgluszek/PTDT-1115
2 parents 67a8228 + c07047c commit b603aa7

File tree

94 files changed

+12380
-15432
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

94 files changed

+12380
-15432
lines changed

.pre-commit-config.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,8 @@ repos:
55
- id: yapf
66
name: "yapf"
77
args: [-i, --style, google]
8+
- repo: https://github.com/datarootsio/databooks
9+
rev: 1.0.1
10+
hooks:
11+
- id: databooks-meta
12+
args: [examples, --overwrite]

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,21 @@
11
# Changelog
2+
# Version 3.38.0 (2023-02-15)
3+
4+
## Added
5+
* All imports are available via `import labelbox as lb` and `import labelbox.types as lb_types`.
6+
* Attachment_name support to create_attachment()
7+
* New method `Project.task_queues()` to obtain the task queues for a project.
8+
* New method `Project.move_data_rows_to_task_queue()` for moving data rows to a specified task queue.
9+
10+
## Changed
11+
* `LabelImport.create_from_objects()`, `MALPredictionImport.create_from_objects()`, `MEAPredictionImport.create_from_objects()`, `Project.upload_annotations()`, `ModelRun.add_predictions()` now support Python Types for annotations.
12+
13+
## Notebooks
14+
* Removed NDJsonConverter from example notebooks
15+
* Simplified imports in all notebooks
16+
* Fixed nested classification in examples/annotation_import/image.ipynb
17+
* Ontology (instructions --> name)
18+
219

320
# Version 3.37.0 (2023-02-08)
421
## Added

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ pip3 install -r requirements.txt
5454
To install dependencies required for data processing modules use:
5555

5656
```
57-
pip install labelbox[data]
57+
pip install "labelbox[data]"
5858
```
5959

6060
## Documentation

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.37.0'
24+
release = '3.38.0'
2525

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

docs/source/index.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,12 @@ Task
118118
:members:
119119
:show-inheritance:
120120

121+
Task Queue
122+
---------------------------
123+
.. automodule:: labelbox.schema.task_queue
124+
:members:
125+
:show-inheritance:
126+
121127
User
122128
---------------------------
123129

0 commit comments

Comments
 (0)