-
-
Notifications
You must be signed in to change notification settings - Fork 5.3k
build(deps): bump the pip group across 3 directories with 19 updates #4798
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| [build-system] | ||
| requires = ["setuptools==80.9.0", "setuptools-scm==9.2.0"] | ||
| requires = ["setuptools==82.0.1", "setuptools-scm==9.2.2"] | ||
| build-backend = "setuptools.build_meta" | ||
|
|
||
| [project] | ||
|
|
@@ -76,7 +76,7 @@ huggingfacenotorch = [ | |
| "tyro", | ||
| "protobuf", | ||
| "sentencepiece>=0.2.0", | ||
| "datasets>=3.4.1,!=4.0.*,!=4.1.0,<4.4.0", | ||
| "datasets>=4.0,<4.6", | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
This new specifier ( Useful? React with 👍 / 👎. |
||
| "accelerate>=0.34.1", | ||
| "peft>=0.18.0,!=0.11.0", | ||
| "huggingface_hub>=0.34.0", | ||
|
|
@@ -582,7 +582,7 @@ colab-new = [ | |
| "packaging", | ||
| "tyro", | ||
| "transformers>=4.51.3,!=4.52.0,!=4.52.1,!=4.52.2,!=4.52.3,!=4.53.0,!=4.54.0,!=4.55.0,!=4.55.1,!=4.57.0,!=4.57.4,!=4.57.5,!=5.0.0,!=5.1.0,<=5.5.0", | ||
| "datasets>=3.4.1,!=4.0.*,!=4.1.0,<4.4.0", | ||
| "datasets>=4.0,<4.6", | ||
| "sentencepiece>=0.2.0", | ||
| "tqdm", | ||
| "psutil", | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -11,12 +11,12 @@ hydra-core | |
| hypothesis | ||
| kgb | ||
| parameterized | ||
| pytest<9.0 | ||
| pytest<10.0 | ||
| pytest-json-report | ||
| pytest-rerunfailures==15.1 | ||
| pytest-rerunfailures==16.1 | ||
| pytest-xdist | ||
| # Also needed by sentence_transformers (installed with --no-deps in extras-no-deps.txt) | ||
| scikit-learn==1.7.1 | ||
| scikit-learn==1.8.0 | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Pinning Useful? React with 👍 / 👎. |
||
|
|
||
| # Additional extras | ||
| pybind11 | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,2 +1,2 @@ | ||
| # Torch AO overrides (installed with --force-reinstall --no-cache-dir) | ||
| torchao==0.14.0 | ||
| torchao==0.17.0 |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,16 +1,16 @@ | ||
| # Single-env pins for unsloth + studio + data-designer | ||
| # Keep compatible with unsloth transformers bounds. | ||
| transformers==4.57.6 | ||
| trl==0.23.1 | ||
| huggingface-hub==0.36.2 | ||
| transformers==5.5.0 | ||
| trl==1.0.0 | ||
|
Comment on lines
+3
to
+4
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Useful? React with 👍 / 👎. |
||
| huggingface-hub==1.9.0 | ||
|
|
||
| # Studio stack | ||
| datasets==4.3.0 | ||
| datasets==4.8.4 | ||
| pyarrow==23.0.1 | ||
|
|
||
| # FastMCP/OpenEnv compat | ||
| fastmcp>=3.0.2 | ||
| mcp>=1.24,<2 | ||
| websockets>=15.0.1 | ||
|
|
||
| pandas==2.3.3 | ||
| pandas==3.0.2 | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| # Install Data Designer in same env as Unsloth. | ||
| data-designer==0.5.4 | ||
| data-designer-config==0.5.4 | ||
| data-designer-engine==0.5.4 | ||
| data-designer==0.5.5 | ||
| data-designer-config==0.5.5 | ||
| data-designer-engine==0.5.5 | ||
| prompt-toolkit>=3,<4 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This change removes the previous
!=4.1.0guard from the package extras, even though the Studio runtime requirements still explicitly exclude4.1.0(studio/backend/requirements/no-torch-runtime.txt). That inconsistency re-allows a known-bad dataset version forunsloth[huggingfacenotorch]/colab-newinstalls, so constrained environments can resolve todatasets==4.1.0and hit the same incompatibility the runtime file is still protecting against.Useful? React with 👍 / 👎.