Skip to content

Commit 1e6cb47

Browse files
authored
[REVERT] Rename sdk-v1 to legacy (#5168)
Reverts changes from #5164 and rename dependencies to `legacy`
1 parent 083c0f0 commit 1e6cb47

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

argilla/docs/how_to_guides/migrate_from_legacy_datasets.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ The guide will take you through three steps:
2828

2929
Connect to the Argilla V1 server via the new `argilla` package. First, you should install an extra dependency:
3030
```bash
31-
pip install "argilla[sdk-v1]"
31+
pip install "argilla[legacy]"
3232
```
3333

3434
Now, you can use the `v1` module to connect to the Argilla V1 server.

argilla/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ io = [
2222
"datasets>=2.0.0",
2323
]
2424

25-
sdk-v1 = [
25+
legacy = [
2626
"argilla-v1[listeners]",
2727
]
2828

argilla/src/argilla/v1/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
from argilla_v1 import * # noqa
1919
except ModuleNotFoundError as ex:
2020
raise Exception(
21-
'The package argilla-v1 is not installed. Please install it by typing: pip install "argilla[sdk-v1]"',
21+
'The package argilla-v1 is not installed. Please install it by typing: pip install "argilla[legacy]"',
2222
) from ex
2323

2424

0 commit comments

Comments
 (0)