Skip to content
Open
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 pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "4.8.2"
description = "Curate High Quality Datasets, Train, Evaluate and Ship"
authors = [{name = "DeepFabric Team", email = "[email protected]"}]
readme = "README.md"
requires-python = ">=3.10"
requires-python = ">=3.11"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

While updating the Python requirement is correct, the ruff linter configuration also needs to be updated for consistency. In this file, tool.ruff.target-version is still set to py310. Please update it to py311 to align with the new minimum Python version.

dependencies = [
"huggingface-hub==0.36.0",
"datasets>=3.0,<5.0",
Expand Down Expand Up @@ -83,7 +83,7 @@ markers = [
]

[tool.ruff]
target-version = "py310"
target-version = "py311"
line-length = 100

[tool.ruff.lint]
Expand Down
Loading