Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jul 8, 2025

Bumps the pip group with 1 update in the /comps/asr/src directory: pillow.
Bumps the pip group with 1 update in the /comps/dataprep/src directory: transformers.
Bumps the pip group with 2 updates in the /comps/guardrails/src/factuality_alignment directory: pillow and transformers.
Bumps the pip group with 2 updates in the /comps/guardrails/src/guardrails directory: pillow and transformers.
Bumps the pip group with 2 updates in the /comps/guardrails/src/hallucination_detection directory: pillow and transformers.
Bumps the pip group with 2 updates in the /comps/guardrails/src/pii_detection directory: pillow and transformers.
Bumps the pip group with 2 updates in the /comps/guardrails/src/prompt_injection directory: pillow and transformers.
Bumps the pip group with 2 updates in the /comps/guardrails/src/toxicity_detection directory: pillow and transformers.
Bumps the pip group with 2 updates in the /comps/image2image/src directory: pillow and transformers.
Bumps the pip group with 1 update in the /comps/image2video/src directory: pillow.
Bumps the pip group with 1 update in the /comps/language_detection/src directory: pillow.
Bumps the pip group with 1 update in the /comps/llms/src/doc-summarization directory: pillow.
Bumps the pip group with 1 update in the /comps/llms/src/faq-generation directory: pillow.
Bumps the pip group with 2 updates in the /comps/lvms/src directory: pillow and transformers.
Bumps the pip group with 2 updates in the /comps/rerankings/src directory: pillow and transformers.
Bumps the pip group with 2 updates in the /comps/retrievers/src directory: pillow and transformers.
Bumps the pip group with 1 update in the /comps/router/src directory: pillow.
Bumps the pip group with 1 update in the /comps/struct2graph/src directory: pillow.
Bumps the pip group with 2 updates in the /comps/text2cypher/src directory: pillow and transformers.
Bumps the pip group with 2 updates in the /comps/text2graph/src directory: pillow and transformers.
Bumps the pip group with 2 updates in the /comps/text2image/src directory: pillow and transformers.
Bumps the pip group with 2 updates in the /comps/text2kg/src directory: pillow and transformers.
Bumps the pip group with 2 updates in the /comps/text2sql/src directory: pillow and transformers.
Bumps the pip group with 2 updates in the /comps/third_parties/bridgetower/src directory: pillow and transformers.
Bumps the pip group with 2 updates in the /comps/third_parties/clip/src directory: pillow and transformers.
Bumps the pip group with 2 updates in the /comps/third_parties/llama-vision/src directory: pillow and transformers.
Bumps the pip group with 2 updates in the /comps/third_parties/llava/src directory: pillow and transformers.
Bumps the pip group with 2 updates in the /comps/third_parties/pathway/src directory: pillow and transformers.
Bumps the pip group with 1 update in the /comps/third_parties/predictionguard/src directory: pillow.
Bumps the pip group with 2 updates in the /comps/third_parties/speecht5/src directory: pillow and transformers.
Bumps the pip group with 2 updates in the /comps/third_parties/video-llama/src directory: pillow and transformers.
Bumps the pip group with 1 update in the /comps/third_parties/whisper/src directory: pillow.
Bumps the pip group with 2 updates in the /comps/web_retrievers/src directory: pillow and transformers.

Updates pillow from 11.2.1 to 11.3.0

Release notes

Sourced from pillow's releases.

11.3.0

https://pillow.readthedocs.io/en/stable/releasenotes/11.3.0.html

Deprecations

Documentation

Dependencies

Testing

... (truncated)

Commits

Updates transformers from 4.52.4 to 4.53.1

Release notes

Sourced from transformers's releases.

Patch Release v4.53.1

This patch contains several bug fixes. The following commits are included:

  • Fix: unprotected import of tp plugin (#39083)
  • Fix key mapping for VLMs (#39029)
  • Several fixes for Gemma3n(#39135)
  • [qwen2-vl] fix FA2 inference (#39121)
  • [smolvlm] fix video inference (#39147)
  • Fix multimodal processor get duplicate arguments when receive kwargs for initialization (#39125)
  • when delaying optimizer creation only prepare the model (#39152)
  • Add packed tensor format support for flex/sdpa/eager through the mask! (#39194)

Release v4.53.0

Gemma3n

Gemma 3n models are designed for efficient execution on low-resource devices. They are capable of multimodal input, handling text, image, video, and audio input, and generating text outputs, with open weights for pre-trained and instruction-tuned variants. These models were trained with data in over 140 spoken languages.

Gemma 3n models use selective parameter activation technology to reduce resource requirements. This technique allows the models to operate at an effective size of 2B and 4B parameters, which is lower than the total number of parameters they contain. For more information on Gemma 3n's efficient parameter management technology, see the Gemma 3n page.

image

from transformers import pipeline
import torch
pipe = pipeline(
"image-text-to-text",
torch_dtype=torch.bfloat16,
model="google/gemma-3n-e4b",
device="cuda",
)
output = pipe(
"https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/bee.jpg",
text="<image_soft_token> in this image, there is"
)
print(output)

Dia

image

Dia is an opensource text-to-speech (TTS) model (1.6B parameters) developed by Nari Labs. It can generate highly realistic dialogue from transcript including nonverbal communications such as laughter and coughing. Furthermore, emotion and tone control is also possible via audio conditioning (voice cloning).

Model Architecture: Dia is an encoder-decoder transformer based on the original transformer architecture. However, some more modern features such as

... (truncated)

Commits

Updates pillow from 11.2.1 to 11.3.0

Release notes

Sourced from pillow's releases.

11.3.0

https://pillow.readthedocs.io/en/stable/releasenotes/11.3.0.html

Deprecations

Documentation

Dependencies

Testing

... (truncated)

Commits

Updates transformers from 4.52.4 to 4.53.1

Release notes

Sourced from transformers's releases.

Patch Release v4.53.1

This patch contains several bug fixes. The following commits are included:

  • Fix: unprotected import of tp plugin (#39083)
  • Fix key mapping for VLMs (#39029)
  • Several fixes for Gemma3n(#39135)
  • [qwen2-vl] fix FA2 inference (#39121)
  • [smolvlm] fix video inference (#39147)
  • Fix multimodal processor get duplicate arguments when receive kwargs for initialization (#39125)
  • when delaying optimizer creation only prepare the model (#39152)
  • Add packed tensor format support for flex/sdpa/eager through the mask! (#39194)

Release v4.53.0

Gemma3n

Gemma 3n models are designed for efficient execution on low-resource devices. They are capable of multimodal input, handling text, image, video, and audio input, and generating text outputs, with open weights for pre-trained and instruction-tuned variants. These models were trained with data in over 140 spoken languages.

Gemma 3n models use selective parameter activation technology to reduce resource requirements. This technique allows the models to operate at an effective size of 2B and 4B parameters, which is lower than the total number of parameters they contain. For more information on Gemma 3n's efficient parameter management technology, see the Gemma 3n page.

image

from transformers import pipeline
import torch
pipe = pipeline(
"image-text-to-text",
torch_dtype=torch.bfloat16,
model="google/gemma-3n-e4b",
device="cuda",
)
output = pipe(
"https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/bee.jpg",
text="<image_soft_token> in this image, there is"
)
print(output)

Dia

image

Dia is an opensource text-to-speech (TTS) model (1.6B parameters) developed by Nari Labs. It can generate highly realistic dialogue from transcript including nonverbal communications such as laughter and coughing. Furthermore, emotion and tone control is also possible via audio conditioning (voice cloning).

Model Architecture: Dia is an encoder-decoder transformer based on the original transformer architecture. However, some more modern features such as

... (truncated)

Commits

Updates pillow from 11.2.1 to 11.3.0

Release notes

Sourced from pillow's releases.

11.3.0

https://pillow.readthedocs.io/en/stable/releasenotes/11.3.0.html

Deprecations

Documentation

Dependencies

Testing

... (truncated)

Commits

Updates transformers from 4.41.2 to 4.52.1

Release notes

Sourced from transformers's releases.

Patch Release v4.53.1

This patch contains several bug fixes. The following commits are included:

  • Fix: unprotected import of tp plugin (#39083)
  • Fix key mapping for VLMs (#39029)
  • Several fixes for Gemma3n(#39135)
  • [qwen2-vl] fix FA2 inference (#39121)
  • [smolvlm] fix video inference (#39147)
  • Fix multimodal processor get duplicate arguments when receive kwargs for initialization (#39125)
  • when delaying optimizer creation only prepare the model (#39152)
  • Add packed tensor format support for flex/sdpa/eager through the mask! (#39194)

Release v4.53.0

Gemma3n

Gemma 3n models are designed for efficient execution on low-resource devices. They are capable of multimodal input, handling text, image, video, and audio input, and generating text outputs, with open weights for pre-trained and instruction-tuned variants. These models were trained with data in over 140 spoken languages.

Gemma 3n models use selective parameter activation technology to reduce resource requirements. This technique allows the models to operate at an effective size of 2B and 4B parameters, which is lower than the total number of parameters they contain. For more information on Gemma 3n's efficient parameter management technology, see the Gemma 3n page.

image

from transformers import pipeline
import torch
pipe = pipeline(
"image-text-to-text",
torch_dtype=torch.bfloat16,
model="google/gemma-3n-e4b",
device="cuda",
)
output = pipe(
"https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/bee.jpg",
text="<image_soft_token> in this image, there is"
)
print(output)

Dia

image

Dia is an opensource text-to-speech (TTS) model (1.6B parameters) developed by Nari Labs. It can generate highly realistic dialogue from transcript including nonverbal communications such as laughter and coughing. Furthermore, emotion and tone control is also possible via audio conditioning (voice cloning).

Model Architecture: Dia is an encoder-decoder transformer based on the original transformer architecture. However, some more modern features such as

... (truncated)

Commits

Updates pillow from 11.2.1 to 11.3.0

Release notes

Sourced from pillow's releases.

11.3.0

https://pillow.readthedocs.io/en/stable/releasenotes/11.3.0.html

Deprecations

Documentation

Dependencies

Testing

... (truncated)

Commits
Description has been truncated

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

Bumps the pip group with 1 update in the /comps/asr/src directory: [pillow](https://github.com/python-pillow/Pillow).
Bumps the pip group with 1 update in the /comps/dataprep/src directory: [transformers](https://github.com/huggingface/transformers).
Bumps the pip group with 2 updates in the /comps/guardrails/src/factuality_alignment directory: [pillow](https://github.com/python-pillow/Pillow) and [transformers](https://github.com/huggingface/transformers).
Bumps the pip group with 2 updates in the /comps/guardrails/src/guardrails directory: [pillow](https://github.com/python-pillow/Pillow) and [transformers](https://github.com/huggingface/transformers).
Bumps the pip group with 2 updates in the /comps/guardrails/src/hallucination_detection directory: [pillow](https://github.com/python-pillow/Pillow) and [transformers](https://github.com/huggingface/transformers).
Bumps the pip group with 2 updates in the /comps/guardrails/src/pii_detection directory: [pillow](https://github.com/python-pillow/Pillow) and [transformers](https://github.com/huggingface/transformers).
Bumps the pip group with 2 updates in the /comps/guardrails/src/prompt_injection directory: [pillow](https://github.com/python-pillow/Pillow) and [transformers](https://github.com/huggingface/transformers).
Bumps the pip group with 2 updates in the /comps/guardrails/src/toxicity_detection directory: [pillow](https://github.com/python-pillow/Pillow) and [transformers](https://github.com/huggingface/transformers).
Bumps the pip group with 2 updates in the /comps/image2image/src directory: [pillow](https://github.com/python-pillow/Pillow) and [transformers](https://github.com/huggingface/transformers).
Bumps the pip group with 1 update in the /comps/image2video/src directory: [pillow](https://github.com/python-pillow/Pillow).
Bumps the pip group with 1 update in the /comps/language_detection/src directory: [pillow](https://github.com/python-pillow/Pillow).
Bumps the pip group with 1 update in the /comps/llms/src/doc-summarization directory: [pillow](https://github.com/python-pillow/Pillow).
Bumps the pip group with 1 update in the /comps/llms/src/faq-generation directory: [pillow](https://github.com/python-pillow/Pillow).
Bumps the pip group with 2 updates in the /comps/lvms/src directory: [pillow](https://github.com/python-pillow/Pillow) and [transformers](https://github.com/huggingface/transformers).
Bumps the pip group with 2 updates in the /comps/rerankings/src directory: [pillow](https://github.com/python-pillow/Pillow) and [transformers](https://github.com/huggingface/transformers).
Bumps the pip group with 2 updates in the /comps/retrievers/src directory: [pillow](https://github.com/python-pillow/Pillow) and [transformers](https://github.com/huggingface/transformers).
Bumps the pip group with 1 update in the /comps/router/src directory: [pillow](https://github.com/python-pillow/Pillow).
Bumps the pip group with 1 update in the /comps/struct2graph/src directory: [pillow](https://github.com/python-pillow/Pillow).
Bumps the pip group with 2 updates in the /comps/text2cypher/src directory: [pillow](https://github.com/python-pillow/Pillow) and [transformers](https://github.com/huggingface/transformers).
Bumps the pip group with 2 updates in the /comps/text2graph/src directory: [pillow](https://github.com/python-pillow/Pillow) and [transformers](https://github.com/huggingface/transformers).
Bumps the pip group with 2 updates in the /comps/text2image/src directory: [pillow](https://github.com/python-pillow/Pillow) and [transformers](https://github.com/huggingface/transformers).
Bumps the pip group with 2 updates in the /comps/text2kg/src directory: [pillow](https://github.com/python-pillow/Pillow) and [transformers](https://github.com/huggingface/transformers).
Bumps the pip group with 2 updates in the /comps/text2sql/src directory: [pillow](https://github.com/python-pillow/Pillow) and [transformers](https://github.com/huggingface/transformers).
Bumps the pip group with 2 updates in the /comps/third_parties/bridgetower/src directory: [pillow](https://github.com/python-pillow/Pillow) and [transformers](https://github.com/huggingface/transformers).
Bumps the pip group with 2 updates in the /comps/third_parties/clip/src directory: [pillow](https://github.com/python-pillow/Pillow) and [transformers](https://github.com/huggingface/transformers).
Bumps the pip group with 2 updates in the /comps/third_parties/llama-vision/src directory: [pillow](https://github.com/python-pillow/Pillow) and [transformers](https://github.com/huggingface/transformers).
Bumps the pip group with 2 updates in the /comps/third_parties/llava/src directory: [pillow](https://github.com/python-pillow/Pillow) and [transformers](https://github.com/huggingface/transformers).
Bumps the pip group with 2 updates in the /comps/third_parties/pathway/src directory: [pillow](https://github.com/python-pillow/Pillow) and [transformers](https://github.com/huggingface/transformers).
Bumps the pip group with 1 update in the /comps/third_parties/predictionguard/src directory: [pillow](https://github.com/python-pillow/Pillow).
Bumps the pip group with 2 updates in the /comps/third_parties/speecht5/src directory: [pillow](https://github.com/python-pillow/Pillow) and [transformers](https://github.com/huggingface/transformers).
Bumps the pip group with 2 updates in the /comps/third_parties/video-llama/src directory: [pillow](https://github.com/python-pillow/Pillow) and [transformers](https://github.com/huggingface/transformers).
Bumps the pip group with 1 update in the /comps/third_parties/whisper/src directory: [pillow](https://github.com/python-pillow/Pillow).
Bumps the pip group with 2 updates in the /comps/web_retrievers/src directory: [pillow](https://github.com/python-pillow/Pillow) and [transformers](https://github.com/huggingface/transformers).


Updates `pillow` from 11.2.1 to 11.3.0
- [Release notes](https://github.com/python-pillow/Pillow/releases)
- [Changelog](https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst)
- [Commits](python-pillow/Pillow@11.2.1...11.3.0)

Updates `transformers` from 4.52.4 to 4.53.1
- [Release notes](https://github.com/huggingface/transformers/releases)
- [Commits](huggingface/transformers@v4.52.4...v4.53.1)

Updates `pillow` from 11.2.1 to 11.3.0
- [Release notes](https://github.com/python-pillow/Pillow/releases)
- [Changelog](https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst)
- [Commits](python-pillow/Pillow@11.2.1...11.3.0)

Updates `transformers` from 4.52.4 to 4.53.1
- [Release notes](https://github.com/huggingface/transformers/releases)
- [Commits](huggingface/transformers@v4.52.4...v4.53.1)

Updates `pillow` from 11.2.1 to 11.3.0
- [Release notes](https://github.com/python-pillow/Pillow/releases)
- [Changelog](https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst)
- [Commits](python-pillow/Pillow@11.2.1...11.3.0)

Updates `transformers` from 4.41.2 to 4.52.1
- [Release notes](https://github.com/huggingface/transformers/releases)
- [Commits](huggingface/transformers@v4.52.4...v4.53.1)

Updates `pillow` from 11.2.1 to 11.3.0
- [Release notes](https://github.com/python-pillow/Pillow/releases)
- [Changelog](https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst)
- [Commits](python-pillow/Pillow@11.2.1...11.3.0)

Updates `transformers` from 4.52.4 to 4.53.1
- [Release notes](https://github.com/huggingface/transformers/releases)
- [Commits](huggingface/transformers@v4.52.4...v4.53.1)

Updates `pillow` from 11.2.1 to 11.3.0
- [Release notes](https://github.com/python-pillow/Pillow/releases)
- [Changelog](https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst)
- [Commits](python-pillow/Pillow@11.2.1...11.3.0)

Updates `transformers` from 4.52.4 to 4.53.1
- [Release notes](https://github.com/huggingface/transformers/releases)
- [Commits](huggingface/transformers@v4.52.4...v4.53.1)

Updates `pillow` from 11.2.1 to 11.3.0
- [Release notes](https://github.com/python-pillow/Pillow/releases)
- [Changelog](https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst)
- [Commits](python-pillow/Pillow@11.2.1...11.3.0)

Updates `transformers` from 4.52.4 to 4.53.1
- [Release notes](https://github.com/huggingface/transformers/releases)
- [Commits](huggingface/transformers@v4.52.4...v4.53.1)

Updates `pillow` from 11.2.1 to 11.3.0
- [Release notes](https://github.com/python-pillow/Pillow/releases)
- [Changelog](https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst)
- [Commits](python-pillow/Pillow@11.2.1...11.3.0)

Updates `transformers` from 4.52.4 to 4.53.1
- [Release notes](https://github.com/huggingface/transformers/releases)
- [Commits](huggingface/transformers@v4.52.4...v4.53.1)

Updates `pillow` from 11.2.1 to 11.3.0
- [Release notes](https://github.com/python-pillow/Pillow/releases)
- [Changelog](https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst)
- [Commits](python-pillow/Pillow@11.2.1...11.3.0)

Updates `transformers` from 4.52.4 to 4.53.1
- [Release notes](https://github.com/huggingface/transformers/releases)
- [Commits](huggingface/transformers@v4.52.4...v4.53.1)

Updates `pillow` from 11.2.1 to 11.3.0
- [Release notes](https://github.com/python-pillow/Pillow/releases)
- [Changelog](https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst)
- [Commits](python-pillow/Pillow@11.2.1...11.3.0)

Updates `pillow` from 11.2.1 to 11.3.0
- [Release notes](https://github.com/python-pillow/Pillow/releases)
- [Changelog](https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst)
- [Commits](python-pillow/Pillow@11.2.1...11.3.0)

Updates `pillow` from 11.2.1 to 11.3.0
- [Release notes](https://github.com/python-pillow/Pillow/releases)
- [Changelog](https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst)
- [Commits](python-pillow/Pillow@11.2.1...11.3.0)

Updates `pillow` from 11.2.1 to 11.3.0
- [Release notes](https://github.com/python-pillow/Pillow/releases)
- [Changelog](https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst)
- [Commits](python-pillow/Pillow@11.2.1...11.3.0)

Updates `pillow` from 11.2.1 to 11.3.0
- [Release notes](https://github.com/python-pillow/Pillow/releases)
- [Changelog](https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst)
- [Commits](python-pillow/Pillow@11.2.1...11.3.0)

Updates `transformers` from 4.49.0 to 4.52.1
- [Release notes](https://github.com/huggingface/transformers/releases)
- [Commits](huggingface/transformers@v4.52.4...v4.53.1)

Updates `pillow` from 11.2.1 to 11.3.0
- [Release notes](https://github.com/python-pillow/Pillow/releases)
- [Changelog](https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst)
- [Commits](python-pillow/Pillow@11.2.1...11.3.0)

Updates `transformers` from 4.52.4 to 4.53.1
- [Release notes](https://github.com/huggingface/transformers/releases)
- [Commits](huggingface/transformers@v4.52.4...v4.53.1)

Updates `pillow` from 11.2.1 to 11.3.0
- [Release notes](https://github.com/python-pillow/Pillow/releases)
- [Changelog](https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst)
- [Commits](python-pillow/Pillow@11.2.1...11.3.0)

Updates `transformers` from 4.52.4 to 4.53.1
- [Release notes](https://github.com/huggingface/transformers/releases)
- [Commits](huggingface/transformers@v4.52.4...v4.53.1)

Updates `pillow` from 11.2.1 to 11.3.0
- [Release notes](https://github.com/python-pillow/Pillow/releases)
- [Changelog](https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst)
- [Commits](python-pillow/Pillow@11.2.1...11.3.0)

Updates `pillow` from 11.2.1 to 11.3.0
- [Release notes](https://github.com/python-pillow/Pillow/releases)
- [Changelog](https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst)
- [Commits](python-pillow/Pillow@11.2.1...11.3.0)

Updates `pillow` from 11.2.1 to 11.3.0
- [Release notes](https://github.com/python-pillow/Pillow/releases)
- [Changelog](https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst)
- [Commits](python-pillow/Pillow@11.2.1...11.3.0)

Updates `transformers` from 4.52.4 to 4.53.1
- [Release notes](https://github.com/huggingface/transformers/releases)
- [Commits](huggingface/transformers@v4.52.4...v4.53.1)

Updates `pillow` from 11.2.1 to 11.3.0
- [Release notes](https://github.com/python-pillow/Pillow/releases)
- [Changelog](https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst)
- [Commits](python-pillow/Pillow@11.2.1...11.3.0)

Updates `transformers` from 4.52.4 to 4.53.1
- [Release notes](https://github.com/huggingface/transformers/releases)
- [Commits](huggingface/transformers@v4.52.4...v4.53.1)

Updates `pillow` from 11.2.1 to 11.3.0
- [Release notes](https://github.com/python-pillow/Pillow/releases)
- [Changelog](https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst)
- [Commits](python-pillow/Pillow@11.2.1...11.3.0)

Updates `transformers` from 4.52.4 to 4.53.1
- [Release notes](https://github.com/huggingface/transformers/releases)
- [Commits](huggingface/transformers@v4.52.4...v4.53.1)

Updates `pillow` from 11.2.1 to 11.3.0
- [Release notes](https://github.com/python-pillow/Pillow/releases)
- [Changelog](https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst)
- [Commits](python-pillow/Pillow@11.2.1...11.3.0)

Updates `transformers` from 4.52.4 to 4.53.1
- [Release notes](https://github.com/huggingface/transformers/releases)
- [Commits](huggingface/transformers@v4.52.4...v4.53.1)

Updates `pillow` from 11.2.1 to 11.3.0
- [Release notes](https://github.com/python-pillow/Pillow/releases)
- [Changelog](https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst)
- [Commits](python-pillow/Pillow@11.2.1...11.3.0)

Updates `transformers` from 4.52.4 to 4.53.1
- [Release notes](https://github.com/huggingface/transformers/releases)
- [Commits](huggingface/transformers@v4.52.4...v4.53.1)

Updates `pillow` from 11.2.1 to 11.3.0
- [Release notes](https://github.com/python-pillow/Pillow/releases)
- [Changelog](https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst)
- [Commits](python-pillow/Pillow@11.2.1...11.3.0)

Updates `transformers` from 4.52.4 to 4.53.1
- [Release notes](https://github.com/huggingface/transformers/releases)
- [Commits](huggingface/transformers@v4.52.4...v4.53.1)

Updates `pillow` from 11.2.1 to 11.3.0
- [Release notes](https://github.com/python-pillow/Pillow/releases)
- [Changelog](https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst)
- [Commits](python-pillow/Pillow@11.2.1...11.3.0)

Updates `transformers` from 4.52.4 to 4.53.1
- [Release notes](https://github.com/huggingface/transformers/releases)
- [Commits](huggingface/transformers@v4.52.4...v4.53.1)

Updates `pillow` from 11.2.1 to 11.3.0
- [Release notes](https://github.com/python-pillow/Pillow/releases)
- [Changelog](https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst)
- [Commits](python-pillow/Pillow@11.2.1...11.3.0)

Updates `transformers` from 4.49.0 to 4.52.1
- [Release notes](https://github.com/huggingface/transformers/releases)
- [Commits](huggingface/transformers@v4.52.4...v4.53.1)

Updates `pillow` from 11.2.1 to 11.3.0
- [Release notes](https://github.com/python-pillow/Pillow/releases)
- [Changelog](https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst)
- [Commits](python-pillow/Pillow@11.2.1...11.3.0)

Updates `transformers` from 4.52.4 to 4.53.1
- [Release notes](https://github.com/huggingface/transformers/releases)
- [Commits](huggingface/transformers@v4.52.4...v4.53.1)

Updates `pillow` from 11.2.1 to 11.3.0
- [Release notes](https://github.com/python-pillow/Pillow/releases)
- [Changelog](https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst)
- [Commits](python-pillow/Pillow@11.2.1...11.3.0)

Updates `transformers` from 4.52.4 to 4.53.1
- [Release notes](https://github.com/huggingface/transformers/releases)
- [Commits](huggingface/transformers@v4.52.4...v4.53.1)

Updates `pillow` from 11.2.1 to 11.3.0
- [Release notes](https://github.com/python-pillow/Pillow/releases)
- [Changelog](https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst)
- [Commits](python-pillow/Pillow@11.2.1...11.3.0)

Updates `pillow` from 11.2.1 to 11.3.0
- [Release notes](https://github.com/python-pillow/Pillow/releases)
- [Changelog](https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst)
- [Commits](python-pillow/Pillow@11.2.1...11.3.0)

Updates `transformers` from 4.52.4 to 4.53.1
- [Release notes](https://github.com/huggingface/transformers/releases)
- [Commits](huggingface/transformers@v4.52.4...v4.53.1)

Updates `pillow` from 11.2.1 to 11.3.0
- [Release notes](https://github.com/python-pillow/Pillow/releases)
- [Changelog](https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst)
- [Commits](python-pillow/Pillow@11.2.1...11.3.0)

Updates `transformers` from 4.49 to 4.52.1
- [Release notes](https://github.com/huggingface/transformers/releases)
- [Commits](huggingface/transformers@v4.52.4...v4.53.1)

Updates `pillow` from 11.2.1 to 11.3.0
- [Release notes](https://github.com/python-pillow/Pillow/releases)
- [Changelog](https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst)
- [Commits](python-pillow/Pillow@11.2.1...11.3.0)

Updates `pillow` from 11.2.1 to 11.3.0
- [Release notes](https://github.com/python-pillow/Pillow/releases)
- [Changelog](https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst)
- [Commits](python-pillow/Pillow@11.2.1...11.3.0)

Updates `transformers` from 4.50.3 to 4.52.1
- [Release notes](https://github.com/huggingface/transformers/releases)
- [Commits](huggingface/transformers@v4.52.4...v4.53.1)

---
updated-dependencies:
- dependency-name: pillow
  dependency-version: 11.3.0
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: transformers
  dependency-version: 4.53.1
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: pillow
  dependency-version: 11.3.0
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: transformers
  dependency-version: 4.53.1
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: pillow
  dependency-version: 11.3.0
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: transformers
  dependency-version: 4.52.1
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: pillow
  dependency-version: 11.3.0
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: transformers
  dependency-version: 4.53.1
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: pillow
  dependency-version: 11.3.0
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: transformers
  dependency-version: 4.53.1
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: pillow
  dependency-version: 11.3.0
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: transformers
  dependency-version: 4.53.1
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: pillow
  dependency-version: 11.3.0
  dependency-type: indirect
  dependency-group: pip
- dependency-name: transformers
  dependency-version: 4.53.1
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: pillow
  dependency-version: 11.3.0
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: transformers
  dependency-version: 4.53.1
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: pillow
  dependency-version: 11.3.0
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: pillow
  dependency-version: 11.3.0
  dependency-type: indirect
  dependency-group: pip
- dependency-name: pillow
  dependency-version: 11.3.0
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: pillow
  dependency-version: 11.3.0
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: pillow
  dependency-version: 11.3.0
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: transformers
  dependency-version: 4.52.1
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: pillow
  dependency-version: 11.3.0
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: transformers
  dependency-version: 4.53.1
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: pillow
  dependency-version: 11.3.0
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: transformers
  dependency-version: 4.53.1
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: pillow
  dependency-version: 11.3.0
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: pillow
  dependency-version: 11.3.0
  dependency-type: indirect
  dependency-group: pip
- dependency-name: pillow
  dependency-version: 11.3.0
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: transformers
  dependency-version: 4.53.1
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: pillow
  dependency-version: 11.3.0
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: transformers
  dependency-version: 4.53.1
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: pillow
  dependency-version: 11.3.0
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: transformers
  dependency-version: 4.53.1
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: pillow
  dependency-version: 11.3.0
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: transformers
  dependency-version: 4.53.1
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: pillow
  dependency-version: 11.3.0
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: transformers
  dependency-version: 4.53.1
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: pillow
  dependency-version: 11.3.0
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: transformers
  dependency-version: 4.53.1
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: pillow
  dependency-version: 11.3.0
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: transformers
  dependency-version: 4.53.1
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: pillow
  dependency-version: 11.3.0
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: transformers
  dependency-version: 4.52.1
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: pillow
  dependency-version: 11.3.0
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: transformers
  dependency-version: 4.53.1
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: pillow
  dependency-version: 11.3.0
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: transformers
  dependency-version: 4.53.1
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: pillow
  dependency-version: 11.3.0
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: pillow
  dependency-version: 11.3.0
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: transformers
  dependency-version: 4.53.1
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: pillow
  dependency-version: 11.3.0
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: transformers
  dependency-version: 4.52.1
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: pillow
  dependency-version: 11.3.0
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: pillow
  dependency-version: 11.3.0
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: transformers
  dependency-version: 4.52.1
  dependency-type: direct:production
  dependency-group: pip
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update python code labels Jul 8, 2025
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jul 8, 2025
@dependabot dependabot bot added the python Pull requests that update python code label Jul 8, 2025
@dependabot dependabot bot requested a review from rbrugaro as a code owner July 8, 2025 19:00
@CICD-at-OPEA
Copy link
Collaborator

This PR is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 7 days.

@CICD-at-OPEA CICD-at-OPEA added Stale and removed Stale labels Aug 7, 2025
@ZePan110 ZePan110 closed this Aug 26, 2025
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Aug 26, 2025

This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests.

To ignore these dependencies, configure ignore rules in dependabot.yml

@dependabot dependabot bot deleted the dependabot/pip/comps/asr/src/pip-d6e4166fd2 branch August 26, 2025 02:58
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file python Pull requests that update python code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants