Skip to content
This repository was archived by the owner on Jul 29, 2024. It is now read-only.

Commit 3707aa9

Browse files
authored
Merge pull request #20 from Labelbox/last_release
Last release set up
2 parents 62dbec8 + 729b2b9 commit 3707aa9

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

README.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
> [!WARNING]
2+
> Starting in July 2024, we will begin archiving all data connector libraries and they will no longer be maintained, including `labelspark`, `labelpandas`, `labelsnow`, and `labelbox-bigquery` libraries.
3+
> To import data from remote sources such as Databricks and Snowflake, set up Census integrations directly on the Labelbox platform.
4+
15
# The Official Open-Source Labelbox <> Pandas Python Integration
26

37
[Labelbox](https://labelbox.com/) enables teams to maximize the value of their unstructured data with its enterprise-grade training data platform. For ML use cases, Labelbox has tools to deploy labelers to annotate data at massive scale, diagnose model performance to prioritize labeling, and plug in existing ML models to speed up labeling. For non-ML use cases, Labelbox has a powerful catalog with auto-computed similarity scores that users can use add metadata tags to large amounts of data with a couple clicks.
@@ -78,4 +82,4 @@ VERSION=0.1.4 #tag
7882
gh release download ${VERSION} --repo Labelbox/labelpandas
7983
8084
slsa-verifier verify-artifact --source-branch main --builder-id 'https://github.com/slsa-framework/slsa-github-generator/.github/workflows/generator_generic_slsa3.yml@refs/tags/v2.0.0' --source-uri "git+https://github.com/Labelbox/labelpandas" --provenance-path multiple.intoto.jsonl ./labelpandas-${VERSION}-py3-none-any.whl
81-
```
85+
```

labelpandas/__init__.py

+3
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,6 @@
22
from .load_local_files import load_local_files
33
from labelpandas import connector
44
from labelpandas import uploader
5+
import warnings
6+
7+
warnings.warn(f'The module {__name__} is deprecated.', DeprecationWarning, stacklevel=2)

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setup(
77
name='labelpandas',
8-
version='0.1.4',
8+
version='0.1.5',
99
author='Labelbox',
1010
author_email="raphael@labelbox.com",
1111
description='Labelbox Connector for Pandas',

0 commit comments

Comments
 (0)