Skip to content

Commit 1a3826c

Browse files
author
Matt Sokoloff
committed
Merge branch 'develop' of https://github.com/Labelbox/labelbox-python into develop
2 parents 88b59f8 + b814162 commit 1a3826c

File tree

24 files changed

+921
-597
lines changed

24 files changed

+921
-597
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,9 @@ ipython_config.py
8383
# pyenv
8484
.python-version
8585

86+
# vscode
87+
.vscode
88+
8689
# pipenv
8790
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
8891
# However, in case of collaboration, if having platform-specific dependencies or dependencies

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,20 @@
77
| `ModelRun.annotation_groups()` | `ModelRun.model_run_data_rows()` | 3.9 |
88
| `DataRowMetadataSchema.id` | `DataRowMetadataSchema.uid` | 3.9 |
99
-----
10+
# Version 3.9.0 (2021-11-12)
11+
## Added
12+
* New ontology management features
13+
* Query for ontologies by name with `client.get_ontologies()` or by id using `client.get_ontology()`
14+
* Query for feature schemas by name with `client.get_feature_schemas()` or id using `client.get_feature_schema()`
15+
* Create feature schemas with `client.create_feature_schemas()`
16+
* Create ontologies from normalized ontology data with `client.create_ontology()`
17+
* Create ontologies from feature schemas with `client.create_ontology_from_feature_schemas()`
18+
* Set up a project from an existing ontology with `project.setup_edior()`
19+
* Added new `FeatureSchema` entity
20+
* Add support for new queue modes
21+
* Send batches of data directly to a project queue with `project.queue()`
22+
* Remove items from a project queue with `project.dequeue()`
23+
* Query for and toggle the queue mode
1024

1125
# Version 3.8.0 (2021-10-22)
1226
## Added

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,9 @@ The package `rasterio` installed by `labelbox[data]` relies on GDAL which could
5757
You may see the following error message:
5858

5959
```
60-
INFO:root:Building on Windows requires extra options to setup.py to locate needed GDAL files. More information is available in the README.
60+
INFO:root:Building on Windows requires extra options to setup.py to locate needed GDAL files. More information is available in the README.
6161
62-
ERROR: A GDAL API version must be specified. Provide a path to gdal-config using a GDAL_CONFIG environment variable or use a GDAL_VERSION environment variable.
62+
ERROR: A GDAL API version must be specified. Provide a path to gdal-config using a GDAL_CONFIG environment variable or use a GDAL_VERSION environment variable.
6363
```
6464

6565
As a workaround:
@@ -72,7 +72,7 @@ As a workaround:
7272

7373
Note: You need to download the right files for your Python version. In the files above `cp38` means CPython 3.8.
7474

75-
2. After downloading the files, please run the following commands, in this particular order.
75+
2. After downloading the files, please run the following commands, in this particular order.
7676

7777
```
7878
pip install GDAL‑3.3.2‑cp38‑cp38‑win_amd64.wh

0 commit comments

Comments
 (0)