Skip to content

Commit a5eaa9b

Browse files
committed
Merge branch 'main' into develop
2 parents 1a69c55 + 1e6cb47 commit a5eaa9b

File tree

10 files changed

+13
-14
lines changed

10 files changed

+13
-14
lines changed

argilla-frontend/docs/snippets/start_page.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ import argilla as rg
3030
client = rg.Argilla(
3131
[local_]api_url="[LOCAL_HOST]",
3232
[hf_]api_url="https://[HF_OWNER]-[HF_SPACE_NAME].hf.space",
33-
api_key="[USER_API_KEY]"
33+
api_key="[USER_API_KEY]",
3434
[hf_]headers={"Authorization": f"Bearer {HF_TOKEN}"}
3535
)
3636
```

argilla-frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "argilla",
3-
"version": "2.0.0-dev0",
3+
"version": "2.0.0dev0",
44
"private": true,
55
"scripts": {
66
"dev": "nuxt",

argilla-server/src/argilla_server/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
# limitations under the License.
1414

1515
# coding: utf-8
16-
__version__ = "2.0.0-dev0"
16+
__version__ = "2.0.0dev0"

argilla/docs/getting_started/installation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ If you have already deployed Argilla Server, you can skip this step. Otherwise,
1717
* Using a [HF Space](https://huggingface.co/new-space?template=argilla/argilla-template-space).
1818

1919
!!! note
20-
As this is a release candidate version, you'll need to manually change the version in the HF Space Files > Dockerfile to `argilla/argilla-quickstart:v2.0.0rc1`.
20+
As this is a release candidate version, you'll need to manually change the version in the HF Space Files > Dockerfile to `argilla/argilla-quickstart:v2.0.0rc2`.
2121

2222
* Locally with Docker.
2323

2424
```console
25-
docker run -d --name quickstart -p 6900:6900 argilla/argilla-quickstart:v2.0.0rc1
25+
docker run -d --name quickstart -p 6900:6900 argilla/argilla-quickstart:v2.0.0rc2
2626
```
2727

2828
## Connect to the Argilla server

argilla/docs/getting_started/quickstart.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ If you have already deployed Argilla Server, you can skip this step. Otherwise,
2323
* Remotely using a [HF Space](https://huggingface.co/new-space?template=argilla/argilla-template-space).
2424

2525
!!! note
26-
As this is a release candidate version, you'll need to manually change the version in the HF Space Files > Dockerfile to `argilla/argilla-quickstart:v2.0.0rc1`.
26+
As this is a release candidate version, you'll need to manually change the version in the HF Space Files > Dockerfile to `argilla/argilla-quickstart:v2.0.0rc2`.
2727

2828
* Locally using Docker.
2929

3030
```console
31-
docker run -d --name quickstart -p 6900:6900 argilla/argilla-quickstart:v2.0.0rc1
31+
docker run -d --name quickstart -p 6900:6900 argilla/argilla-quickstart:v2.0.0rc2
3232
```
3333

3434
### Connect to the Argilla server

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[v1]"
31+
pip install "argilla[legacy]"
3232
```
3333

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

argilla/docs/tutorials/text_classification.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@
4545
"* Remotely using a [HF Space](https://huggingface.co/new-space?template=argilla/argilla-template-space). ⚠️ If persistent storage is not enabled, you will lose your data when the server is stopped.\n",
4646
"\n",
4747
"!!! note\n",
48-
" As this is a release candidate version, you'll need to manually change the version in the HF Space Files > Dockerfile to `argilla/argilla-quickstart:v2.0.0rc1`.\n",
48+
" As this is a release candidate version, you'll need to manually change the version in the HF Space Files > Dockerfile to `argilla/argilla-quickstart:v2.0.0rc2`.\n",
4949
"\n",
50-
"* Locally using Docker: `docker run -d --name quickstart -p 6900:6900 argilla/argilla-quickstart:v2.0.0rc1`"
50+
"* Locally using Docker: `docker run -d --name quickstart -p 6900:6900 argilla/argilla-quickstart:v2.0.0rc2`"
5151
]
5252
},
5353
{

argilla/pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ dynamic = ["version"]
1313
dependencies = [
1414
"httpx>=0.26.0",
1515
"pydantic>=2.6.0, <3.0.0",
16-
1716
"tqdm>=4.60.0",
1817
"rich>=10.0.0",
1918
]
@@ -23,7 +22,7 @@ io = [
2322
"datasets>=2.0.0",
2423
]
2524

26-
v1 = [
25+
legacy = [
2726
"argilla-v1[listeners]",
2827
]
2928

argilla/src/argilla/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@
2323
from argilla.vectors import * # noqa
2424

2525

26-
__version__ = "2.0.0-dev0"
26+
__version__ = "2.0.0dev0"

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[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)