Skip to content

Commit 3b1133a

Browse files
authored
[CONFIG] argilla server: Review and update dependencies (#5649)
# Description <!-- Please include a summary of the changes and the related issue. Please also include relevant motivation and context. List any dependencies that are required for this change. --> - [x] Use the newer version of python - [x] Use the latest version of core dependencies. (without code changes) - [x] Upgrade docker images - [x] Remove unnecessary dependencies. **Type of change** <!-- Please delete options that are not relevant. Remember to title the PR according to the type of change --> - Refactor (change restructuring the codebase without changing functionality) - Improvement (change adding some improvement to an existing functionality) **How Has This Been Tested** <!-- Please add some reference about how your feature has been tested. --> **Checklist** <!-- Please go over the list and make sure you've taken everything into account --> - I added relevant documentation - I followed the style guidelines of this project - I did a self-review of my code - I made corresponding changes to the documentation - I confirm My changes generate no new warnings - I have added tests that prove my fix is effective or that my feature works - I have added relevant notes to the CHANGELOG.md file (See https://keepachangelog.com/)
1 parent 02413d1 commit 3b1133a

File tree

6 files changed

+1818
-1664
lines changed

6 files changed

+1818
-1664
lines changed

argilla-server/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ These are the section headers that we use:
1616

1717
## [Unreleased]()
1818

19+
### Changed
20+
21+
- Changed default python version to 3.13. ([#5649](https://github.com/argilla-io/argilla/pull/5649))
22+
1923
### Fixed
2024

2125
- Fixed error so now `_touch_dataset_last_activity_at` function is not updating dataset's `updated_at` column. ([#5656](https://github.com/argilla-io/argilla/pull/5656))
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
honcho
2-
rq ~= 1.16.2
1+
honcho ~= 2.0.0

argilla-server/docker/server/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.10-slim AS builder
1+
FROM python:3.13-slim AS builder
22

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

18-
FROM python:3.10-slim
18+
FROM python:3.13-slim
1919

2020
# Environment Variables
2121
ENV USERNAME=""

0 commit comments

Comments
 (0)