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

[CONFIG] argilla server: Review and update dependencies #5649

Merged
merged 23 commits into from
Nov 4, 2024
Merged
Show file tree
Hide file tree
Changes from 20 commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
0927972
prevent enum errors when running python >3.11
frascuchon Oct 29, 2024
23fde71
chore: Update pdm.lock
frascuchon Oct 29, 2024
b8fa509
config: Review and update core deps
frascuchon Oct 29, 2024
5a7ada9
chore: Revert removing python-multipart
frascuchon Oct 29, 2024
5425916
upgrade default pdm python version
frascuchon Oct 29, 2024
061960f
chore: Update to python 3.13 for docker images
frascuchon Oct 29, 2024
eacb008
config: Adapt deps to install properly under docker
frascuchon Oct 29, 2024
b307972
Update argilla-server/pyproject.toml
frascuchon Oct 29, 2024
c2ff63b
chore: Update pdm.lock
frascuchon Oct 29, 2024
52074d1
Merge branch 'chore/argilla-server/update-deps' of github.com:argilla…
frascuchon Oct 29, 2024
12d0807
chore: Revert some DB-related deps
frascuchon Oct 30, 2024
826a6cd
config: Upgrade asyncpg
frascuchon Oct 30, 2024
ebc35e6
chore: update pdm.lock
frascuchon Oct 30, 2024
7f08c98
fix: Prevent update dataset.updated_at when updating last_activity_at…
frascuchon Oct 30, 2024
bbcf08a
using latests 2.0.0 sqlalchemy dep
frascuchon Oct 30, 2024
b94de3d
chore: Cleaning deps
frascuchon Oct 30, 2024
0629228
chore: upgrade to psycopg3
frascuchon Oct 30, 2024
2161d17
chore: update pdm.lock
frascuchon Oct 30, 2024
152ca22
Merge branch 'develop' into chore/argilla-server/update-deps
frascuchon Oct 30, 2024
148add3
Remove extra refresh
frascuchon Oct 30, 2024
13f813b
Merge branch 'develop' into chore/argilla-server/update-deps
frascuchon Nov 4, 2024
828fa6d
Update argilla-server/pyproject.toml
frascuchon Nov 4, 2024
b184802
chore: Update changelog
frascuchon Nov 4, 2024
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
3 changes: 1 addition & 2 deletions argilla-server/docker/argilla-hf-spaces/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
honcho
rq ~= 1.16.2
honcho ~= 2.0.0
4 changes: 2 additions & 2 deletions argilla-server/docker/server/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.10-slim AS builder
FROM python:3.13-slim AS builder

# Copying argilla distribution files
COPY dist/*.whl /packages/
Expand All @@ -15,7 +15,7 @@ RUN apt-get update && \
rm -rf /var/lib/apt/lists/* && \
rm -rf /packages

FROM python:3.10-slim
FROM python:3.13-slim

# Environment Variables
ENV USERNAME=""
Expand Down
Loading