Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] ci: Review argilla-server workflow #4784

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/argilla-server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ jobs:

build_server_docker_image:
name: Build Argilla server docker image
uses: ./.github/workflows/argilla-server.build-and-push-docker-image.yml
uses: ./.github/workflows/argilla-server.build-docker-image.yml
if: github.event_name == 'pull_request' && github.event.pull_request.draft == false
needs:
- build
Expand All @@ -131,7 +131,7 @@ jobs:

build_quickstart_docker_image:
name: Build Argilla quickstart docker image
uses: ./.github/workflows/argilla-server.build-and-push-docker-image.yml
uses: ./.github/workflows/argilla-server.build-docker-image.yml
needs: build_server_docker_image
if: github.event_name == 'pull_request' && github.event.pull_request.draft == false
with:
Expand Down
2 changes: 2 additions & 0 deletions argilla-server/src/argilla_server/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@

from argilla_server.pydantic_v1 import PYDANTIC_MAJOR_VERSION

# This line should be removed

if PYDANTIC_MAJOR_VERSION >= 2:
warnings.warn("The argilla_server package is not compatible with Pydantic 2. " "Please use Pydantic 1.x instead.")
else:
Expand Down
Loading