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

build(deps): bump the dependencies group across 1 directory with 17 updates #277

Merged
merged 2 commits into from
Feb 11, 2025

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 11, 2025

Bumps the dependencies group with 17 updates in the / directory:

Package From To
granian 1.6.0 1.7.6
litestar 2.12.1 2.14.0
uvloop 0.20.0 0.21.0
msgspec 0.18.6 0.19.0
pydantic-settings 2.5.2 2.7.1
ctranslate2 4.4.0 4.5.0
transformers 4.44.2 4.48.3
sentence-transformers 3.1.1 3.4.1
protobuf 5.28.2 5.29.3
pymupdf 1.24.10 1.25.3
redis 5.0.8 5.2.1
hiredis 3.0.0 3.1.0
torch 2.4.1 2.6.0
pyright 1.1.382 1.1.393
pytest 8.3.3 8.3.4
pylint 3.3.1 3.3.4
ruff 0.6.7 0.9.6

Updates granian from 1.6.0 to 1.7.6

Release notes

Sourced from granian's releases.

Granian 1.7.6

Patch release

Changes since 1.7.5:

  • Fix a utf8 decoding bug on request paths leading to panics (#492 by @​ritesh)
  • Allow watchfiles dependency versions >= 1.0 (#496 by @​RafaelWO)
  • Made asyncio the default task implementation due to instability of the rust one

Granian 1.7.5

Patch release

Changes since 1.7.4:

  • Fix a bug in Rust task implementation leading to panics under some circumstances
  • Refactor GIL acquisition/release in async protocols
  • Bump dependencies

Granian 1.7.4

Patch release

Changes since 1.7.3:

  • Fix a regression bug causing wrong contextvars.Context to be picked with Rust task implementation under some circumstances
  • Fix IPv6 addresses in access logs (#477 by @​jyelloz)
  • Bump dependencies

Granian 1.7.3

Patch release

Changes since 1.7.2:

  • Fix a regression bug preventing asyncio.wait_for to work with Rust task implementation

Granian 1.7.2

Patch release

Changes since 1.7.1:

  • Fix a regression bug preventing PyFutureAwaitable objects to be correctly GCollected in some circumstances
  • Fix a regression bug causing the wrong context to be used in some async calls
  • Prevent async callbacks tasks to be GCollected before completion with pure-python asyncio task implementation

Granian 1.7.1

Patch release

Changes since 1.7.0:

  • Add a pure-asyncio task implementation to prevent type checks issues in libs like anyio

Granian 1.7.0

What's Changed

New features

... (truncated)

Commits

Updates litestar from 2.12.1 to 2.14.0

Release notes

Sourced from litestar's releases.

v2.14.0

Summary

We are pleased to publish our first release of 2025!

Since our last release in November, everyone's been busy. In that short time, we've managed to squeeze in a huge amount of fixes, features, and (most, importantly) Python 3.13 support. Thank you to everyone in the community who contributed to this.

As we move towards 3.0, you'll see a few deprecations being added to packages. Please don't hesitate to join our discord to discuss any deprecation specifics or any other change you'd like to see in 3.0

Sponsors 🌟

Thanks to these incredible business sponsors:

Thanks to these incredible personal sponsors:

What's changed

New contributors 🎉

Bugfixes 🐛

New features 🚀

... (truncated)

Commits
  • 4c7166a chore(release): updates change log for v2.14.0 (#3933)
  • 10734fa chore(release): prepare for v2.14.0
  • 5c87273 feat(ci): implement psycopg client install for macos and windows runner...
  • 9cc5396 fix(ci): only install dev tools in ubuntu (#3931)
  • f1f4c37 feat: add support for Python 3.13 (#3850)
  • 2fb6f6b fix(compression middleware): Fix resource handling (#3927)
  • f5ba3a7 chore(test): update pytest and unpin max version (#3925)
  • 8ac019d chore(build): prevent python 3.13 from installing (#3924)
  • 75d3430 docs: mention id field in 1-abstract-dto.rst (#3803)
  • da30d9f docs: add aranvir as a contributor for doc, code, and test (#3923)
  • Additional commits viewable in compare view

Updates uvloop from 0.20.0 to 0.21.0

Release notes

Sourced from uvloop's releases.

v0.21.0

Changes

  • Add cleanup_socket param on create_unix_server() (#623) (by @​fantix in d6114d2)

Fixes

v0.21.0beta1

No release notes provided.

Commits

Updates msgspec from 0.18.6 to 0.19.0

Release notes

Sourced from msgspec's releases.

Version 0.19.0

  • Improve JSON encoding performance by up to 40% (#647).
  • Ensure tuple and frozenset default values are treated identically whether specified by value or default_factory (#653).
  • Fix memory leak of match_args in StructConfig object (#684).
  • Fix memory leak in Raw.copy() (#709).
  • Update decode signatures for PEP 688 (#740).
  • Generate __replace__ method on Struct types, for use with copy.replace (#747).
  • Fix incorrect decoding of certain > 64 bit integers (#751).
  • Call __post_init__ when converting from an object to a Struct (#752).
  • BREAKING: Expand buffer when encode_into is passed a buffer smaller than offset (#753).
  • Support Raw objects as inputs to convert (#754).
  • Error nicely when a dataclass type (instead of an instance) is passed to encode (#755).
  • Drop support for Python 3.8 (#756, #763).
  • Add support for Python 3.13 (#711).
  • Remove deprecated from_builtins (#761).
  • Support encoding any Enum type whose .value is a supported type (#757).
  • Don't fail eagerly when processing generic types with unsupported __parameters__ (#772).
  • Use eval_type_backport to backport type annotations to Python 3.9 (#773).
Commits
  • dd965dc Update changelog for 0.19.0
  • 8c59e8b chore(build): updated Github CI Actions (#785)
  • 4418e5e Use eval_type_backport on Python 3.9 if it's installed to resolve `int | None...
  • 3c487c1 Fix typo and readability
  • 595c33c Don't fail when parsing types with invalid __parameters__
  • 148f9a1 remove copyright year in docs (#767)
  • e06e9c9 Remove some missed Python 3.8 code
  • 76cbca6 Upgrade ruff in pre-commit
  • 07e2abd Remove deprecated from_builtins
  • f66bbbd MNT: account for CPython 314 changes (#760)
  • Additional commits viewable in compare view

Updates pydantic-settings from 2.5.2 to 2.7.1

Release notes

Sourced from pydantic-settings's releases.

v2.7.1

What's Changed

Full Changelog: pydantic/pydantic-settings@v2.7.0...v2.7.1

v2.7.0

What's Changed

New Contributors

Full Changelog: pydantic/pydantic-settings@v2.6.1...v2.7.0

v2.6.1

What's Changed

New Contributors

Full Changelog: pydantic/pydantic-settings@v2.6.0...v2.6.1

v2.6.0

What's Changed

... (truncated)

Commits
  • c989335 Prepare release 2.7.1 (#511)
  • 66ecc3a Move preferred alias resolution to private method (#507)
  • 95fae54 Prepare release 2.7.0 (#499)
  • b8968a7 Fix attribute error on Python 3.9 with typing.Sequence (#497)
  • 3667aed Improve field value parsing by adding NoDecode and ForceDecode annotation...
  • 2f498fe Change reference of default values validation in documentation (#496)
  • 7bcb6ed Add support for CLI kebab case flag. (#489)
  • 0b3e73d Relax default protected_namespaces (#483)
  • 3f831e9 Removing return type from the function in test (#491)
  • a903697 Strip annotated when getting submodels during CLI parsing. (#490)
  • Additional commits viewable in compare view

Updates ctranslate2 from 4.4.0 to 4.5.0

Release notes

Sourced from ctranslate2's releases.

CTranslate2 4.5.0

Note: The Ctranslate2 Python package now supports CUDNN 9 and is no longer compatible with CUDNN 8.

New features

  • Support Phi3 (#1800)
  • Support Mistral Nemo (#1785)
  • Support Wav2Vec2Bert ASR (#1778)

Fixes and improvements

Changelog

Sourced from ctranslate2's changelog.

v4.5.0 (2024-10-22)

Note: The Ctranslate2 Python package now supports CUDNN 9 and is no longer compatible with CUDNN 8.

New features

  • Support Phi3 (#1800)
  • Support Mistral Nemo (#1785)
  • Support Wav2Vec2Bert ASR (#1778)

Fixes and improvements

Commits

Updates transformers from 4.44.2 to 4.48.3

Release notes

Sourced from transformers's releases.

Patch release v4.48.3

This ends the python3.9 issues mostly!

For some very niche cases, the new rope embedding introduced device failures

Num items in batch

  • Fix model kwargs (#35875) by @​muellerzr: this is long due, sorry that it took so long. Some models were not compatible with the num_items_in_batch

Finally the fix to Gemma2 is propagated to paligemma2!

Patch release v4.48.2

Sorry because the fixes for num_items_in_batches are not done yet 😓 To follow along see this PR, a new patch will be available soon!

Now, we mostly had BC issue with python version 3.9:

Then we had a small regression for DBRX saving:

Finally we have a fix for gemma and the hybrid attention architectures:

Miscellaneous:

Patch release v4.48.1

Yet again we are dawned with a gradient accumulation fix! There is also a refactoring of the attention that let a small typo in, we made sure PHI is no longer broken!

Moonshine had a small issue when wrapping generate so we removed that!

🤗

v4.48.0: ModernBERT, Aria, TimmWrapper, ColPali, Falcon3, Bamba, VitPose, DinoV2 w/ Registers, Emu3, Cohere v2, TextNet, DiffLlama, PixtralLarge, Moonshine

New models

ModernBERT

The ModernBert model was proposed in Smarter, Better, Faster, Longer: A Modern Bidirectional Encoder for Fast, Memory Efficient, and Long Context Finetuning and Inference by Benjamin Warner, Antoine Chaffin, Benjamin Clavié, Orion Weller, Oskar Hallström, Said Taghadouini, Alexis Galalgher, Raja Bisas, Faisal Ladhak, Tom Aarsen, Nathan Cooper, Grifin Adams, Jeremy Howard and Iacopo Poli.

... (truncated)

Commits

Updates sentence-transformers from 3.1.1 to 3.4.1

Release notes

Sourced from sentence-transformers's releases.

v3.4.1 - Model2Vec compatibility & offline model fix

This release introduces a convenient compatibility with Model2Vec models, and fixes a bug that caused an outgoing request even when using a local model.

Install this version with

# Training + Inference
pip install sentence-transformers[train]==3.4.1
Inference only, use one of:
pip install sentence-transformers==3.4.1
pip install sentence-transformers[onnx-gpu]==3.4.1
pip install sentence-transformers[onnx]==3.4.1
pip install sentence-transformers[openvino]==3.4.1

Full Model2Vec integration

This release introduces support to load an efficient Model2Vec embedding model directly in Sentence Transformers:

from sentence_transformers import SentenceTransformer
Download from the 🤗 Hub
model = SentenceTransformer(
"minishlab/potion-base-8M",
device="cpu",
)
Run inference
sentences = [
'Gadofosveset-enhanced MR angiography of carotid arteries: does steady-state imaging improve accuracy of first-pass imaging?',
'To evaluate the diagnostic accuracy of gadofosveset-enhanced magnetic resonance (MR) angiography in the assessment of carotid artery stenosis, with digital subtraction angiography (DSA) as the reference standard, and to determine the value of reading first-pass, steady-state, and "combined" (first-pass plus steady-state) MR angiograms.',
'In a longitudinal study we investigated in vivo alterations of CVO during neuroinflammation, applying Gadofluorine M- (Gf) enhanced magnetic resonance imaging (MRI) in experimental autoimmune encephalomyelitis, an animal model of multiple sclerosis. SJL/J mice were monitored by Gadopentate dimeglumine- (Gd-DTPA) and Gf-enhanced MRI after adoptive transfer of proteolipid-protein-specific T cells. Mean Gf intensity ratios were calculated individually for different CVO and correlated to the clinical disease course. Subsequently, the tissue distribution of fluorescence-labeled Gf as well as the extent of cellular inflammation was assessed in corresponding histological slices.',
]
embeddings = model.encode(sentences)
print(embeddings.shape)
[3, 1024]
Get the similarity scores for the embeddings
similarities = model.similarity(embeddings[0], embeddings[1:])
print(similarities)
tensor([[0.8085, 0.4884]])

from sentence_transformers import SentenceTransformer
from sentence_transformers.models import StaticEmbedding
Download from the 🤗 Hub
module = StaticEmbedding.from_model2vec("minishlab/potion-base-8M")
</tr></table>

... (truncated)

Commits

Updates protobuf from 5.28.2 to 5.29.3

Commits
  • b407e84 Updating version.json and repo version numbers to: 29.3
  • 9a5d2c3 Add .bazeliskrc for protobuf repo to tell bazelisk to use 7.1.2 by default. (...
  • 1dc5842 Fix cmake installation location of java and go features (#19773)
  • 8e7e6b0 Update artifact actions to v4 (#19703)
  • cbdc8ab Merge pull request #19719 from protocolbuffers/29.x-202412181411
  • 5621748 Updating version.json and repo version numbers to: 29.3-dev
  • 2330983 Updating version.json and repo version numbers to: 29.2
  • 1772657 Automated rollback of commit 23aada230b2478c7a07fe7612489eb8e79b9c379. (#19692)
  • 8b9d76c Export environment variables so bazelisk picks them up (#19690)
  • a1c9b6a Pin staleness check to Bazel 7 (#19689)
  • Additional commits viewable in compare view

Updates pymupdf from 1.24.10 to 1.25.3

Release notes

Sourced from pymupdf's releases.

PyMuPDF-1.25.3 released

PyMuPDF-1.25.3 has been released.

Wheels for Windows, Linux and MacOS, and the sdist, are available on pypi.org and can be installed in the usual way, for example:

python -m pip install --upgrade pymupdf

[Linux-aarch64 wheels will be built and uploaded later.]

Changes in version 1.25.3 (2025-02-06)

  • Use MuPDF-1.25.4.

  • Fixed issues:

  • Other:

    • In annotations:
      • Added support for subtype FreeTextCallout.
      • Added support for rich text.
    • Added miter_limit arg to insert_text*() to allow supression of spikes caused by long miters.
    • Add Widget Support to Document.insert_pdf().
    • Add bibi to span dicts.
    • Add `synthetic' to char dict.

PyMuPDF-1.25.2 released

PyMuPDF-1.25.2 has been released.

Wheels for Windows, Linux and MacOS, and the sdist, are available on pypi.org and can be installed in the usual way, for example:

python -m pip install --upgrade pymupdf

[Linux-aarch64 wheels will be built and uploaded later.]

Changes in version 1.25.2 (2025-01-17)

... (truncated)

Changelog

Sourced from pymupdf's changelog.

Change Log

Changes in version 1.25.3 (2025-02-06)

  • Use MuPDF-1.25.4.

  • Fixed issues:

    • Fixed 4139 <https://github.com/pymupdf/PyMuPDF/issues/4139>_: Text color numbers change between 1.24.14 and 1.25.0
    • Fixed 4141 <https://github.com/pymupdf/PyMuPDF/issues/4141>_: Some insertion methods fails for pages without a /Resouces object
    • Fixed 4180 <https://github.com/pymupdf/PyMuPDF/issues/4180>_: Search problems
    • Fixed 4182 <https://github.com/pymupdf/PyMuPDF/issues/4182>_: Text coordinate extraction error
    • Fixed 4245 <https://github.com/pymupdf/PyMuPDF/issues/4245>_: Highlighting issue distorted on recent versions
    • Fixed 4254 <https://github.com/pymupdf/PyMuPDF/issues/4254>_: add_freetext_annot is drawing text outside the annotation box
  • Other:

    • In annotations:
      • Added support for subtype FreeTextCallout.
      • Added support for rich text.
    • Added miter_limit arg to insert_text*() to allow supression of spikes caused by long miters.
    • Add Widget Support to Document.insert_pdf().
    • Add bibi to span dicts.
    • Add `synthetic' to char dict.

Changes in version 1.25.2 (2025-01-17)

  • Fixed issues:

    • Fixed 4055 <https://github.com/pymupdf/PyMuPDF/issues/4055>_: "Yes" for all checkboxes does not work for all PDF rendering engines.
    • Fixed 4155 <https://github.com/pymupdf/PyMuPDF/issues/4155>_: samples_mv is unsafe
    • Fixed 4162 <https://github.com/pymupdf/PyMuPDF/issues/4162>_: Got AttributeError, when tried to add Signature field
    • Fixed 4186 <https://github.com/pymupdf/PyMuPDF/issues/4186>_: Incorrect handling of JPEG with color space CMYK image extraction
    • Fixed 4195 <https://github.com/pymupdf/PyMuPDF/issues/4195>_: Pixmaps that are inverted and have an alpha channel are not rendered properly
    • Fixed 4225 <https://github.com/pymupdf/PyMuPDF/issues/4225>_: pixmap.pil_save() fails due to colorspace definition
    • Fixed 4232 <https://github.com/pymupdf/PyMuPDF/issues/4232>_: Incorrect Font style and Size
  • Other:

    • Use Python's built-in glyphname <> unicode conversion.
    • Improve speed of pixmap color inversion.
    • Add new char_flags member to span dictionary, for example allows detection of invisible text.
    • Detect image masks in TextPage output.
    • Added Pixmap.pil_image().

Changes in version 1.25.1 (2024-12-11)

... (truncated)

Commits
  • d84e90c Update version numbers and dates for release.
  • 8f2be1e .github/workflows/build_wheels.yml: use upload-artifact@v4.
  • 25f14d3 scripts/sysinstall.py: avoid test failure.
  • 900c232 tests/: fixes for test_1645() and recent mupdf.
  • 1f8da4f changes.txt: updates for current tree.
  • 251b339 Address 4254
  • 610086c tests/: test_4182(): update to match latest mupdf.
  • f63cb4e tests/: test_4180(): update to match latest mupdf.
  • 9cf9f14 tests/: test_4245(): update to match latest mupdf.
  • 61b8baf tests/: test_3854(): update to match latest mupdf.
  • Additional commits viewable in compare view

Updates redis from 5.0.8 to 5.2.1

Release notes

Sourced from redis's releases.

5.2.1

Changes

🐛 Bug Fixes

  • Fixed unsecured tempfile.mktemp() command usage (#3446)
  • Fixed bug with SLOWLOG GET response parsing on Redis Software (#3441)
  • Fixed issue with invoking _close() on closed event loop (#3438)

🧰 Maintenance

@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Feb 11, 2025
@winstxnhdw
Copy link
Owner

@dependabot rebase

@dependabot dependabot bot force-pushed the dependabot/pip/dependencies-638c008c95 branch from 9fef932 to 1458d8a Compare February 11, 2025 20:08
@winstxnhdw
Copy link
Owner

@dependabot rebase

…pdates

Bumps the dependencies group with 17 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [granian](https://github.com/emmett-framework/granian) | `1.6.0` | `1.7.6` |
| [litestar](https://github.com/litestar-org/litestar) | `2.12.1` | `2.14.0` |
| [uvloop](https://github.com/MagicStack/uvloop) | `0.20.0` | `0.21.0` |
| [msgspec](https://github.com/jcrist/msgspec) | `0.18.6` | `0.19.0` |
| [pydantic-settings](https://github.com/pydantic/pydantic-settings) | `2.5.2` | `2.7.1` |
| [ctranslate2](https://github.com/OpenNMT/CTranslate2) | `4.4.0` | `4.5.0` |
| [transformers](https://github.com/huggingface/transformers) | `4.44.2` | `4.48.3` |
| [sentence-transformers](https://github.com/UKPLab/sentence-transformers) | `3.1.1` | `3.4.1` |
| [protobuf](https://github.com/protocolbuffers/protobuf) | `5.28.2` | `5.29.3` |
| [pymupdf](https://github.com/pymupdf/pymupdf) | `1.24.10` | `1.25.3` |
| [redis](https://github.com/redis/redis-py) | `5.0.8` | `5.2.1` |
| [hiredis](https://github.com/redis/hiredis-py) | `3.0.0` | `3.1.0` |
| [torch](https://github.com/pytorch/pytorch) | `2.4.1` | `2.6.0` |
| [pyright](https://github.com/RobertCraigie/pyright-python) | `1.1.382` | `1.1.393` |
| [pytest](https://github.com/pytest-dev/pytest) | `8.3.3` | `8.3.4` |
| [pylint](https://github.com/pylint-dev/pylint) | `3.3.1` | `3.3.4` |
| [ruff](https://github.com/astral-sh/ruff) | `0.6.7` | `0.9.6` |



Updates `granian` from 1.6.0 to 1.7.6
- [Release notes](https://github.com/emmett-framework/granian/releases)
- [Commits](emmett-framework/granian@v1.6.0...v1.7.6)

Updates `litestar` from 2.12.1 to 2.14.0
- [Release notes](https://github.com/litestar-org/litestar/releases)
- [Commits](litestar-org/litestar@v2.12.1...v2.14.0)

Updates `uvloop` from 0.20.0 to 0.21.0
- [Release notes](https://github.com/MagicStack/uvloop/releases)
- [Commits](MagicStack/uvloop@v0.20.0...v0.21.0)

Updates `msgspec` from 0.18.6 to 0.19.0
- [Release notes](https://github.com/jcrist/msgspec/releases)
- [Commits](jcrist/msgspec@0.18.6...0.19.0)

Updates `pydantic-settings` from 2.5.2 to 2.7.1
- [Release notes](https://github.com/pydantic/pydantic-settings/releases)
- [Commits](pydantic/pydantic-settings@v2.5.2...v2.7.1)

Updates `ctranslate2` from 4.4.0 to 4.5.0
- [Release notes](https://github.com/OpenNMT/CTranslate2/releases)
- [Changelog](https://github.com/OpenNMT/CTranslate2/blob/master/CHANGELOG.md)
- [Commits](OpenNMT/CTranslate2@v4.4.0...v4.5.0)

Updates `transformers` from 4.44.2 to 4.48.3
- [Release notes](https://github.com/huggingface/transformers/releases)
- [Commits](huggingface/transformers@v4.44.2...v4.48.3)

Updates `sentence-transformers` from 3.1.1 to 3.4.1
- [Release notes](https://github.com/UKPLab/sentence-transformers/releases)
- [Commits](UKPLab/sentence-transformers@v3.1.1...v3.4.1)

Updates `protobuf` from 5.28.2 to 5.29.3
- [Release notes](https://github.com/protocolbuffers/protobuf/releases)
- [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl)
- [Commits](protocolbuffers/protobuf@v5.28.2...v5.29.3)

Updates `pymupdf` from 1.24.10 to 1.25.3
- [Release notes](https://github.com/pymupdf/pymupdf/releases)
- [Changelog](https://github.com/pymupdf/PyMuPDF/blob/main/changes.txt)
- [Commits](pymupdf/PyMuPDF@1.24.10...1.25.3)

Updates `redis` from 5.0.8 to 5.2.1
- [Release notes](https://github.com/redis/redis-py/releases)
- [Changelog](https://github.com/redis/redis-py/blob/master/CHANGES)
- [Commits](redis/redis-py@v5.0.8...v5.2.1)

Updates `hiredis` from 3.0.0 to 3.1.0
- [Release notes](https://github.com/redis/hiredis-py/releases)
- [Changelog](https://github.com/redis/hiredis-py/blob/master/CHANGELOG.md)
- [Commits](redis/hiredis-py@v3.0.0...v3.1.0)

Updates `torch` from 2.4.1 to 2.6.0
- [Release notes](https://github.com/pytorch/pytorch/releases)
- [Changelog](https://github.com/pytorch/pytorch/blob/main/RELEASE.md)
- [Commits](pytorch/pytorch@v2.4.1...v2.6.0)

Updates `pyright` from 1.1.382 to 1.1.393
- [Release notes](https://github.com/RobertCraigie/pyright-python/releases)
- [Commits](RobertCraigie/pyright-python@v1.1.382...v1.1.393)

Updates `pytest` from 8.3.3 to 8.3.4
- [Release notes](https://github.com/pytest-dev/pytest/releases)
- [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst)
- [Commits](pytest-dev/pytest@8.3.3...8.3.4)

Updates `pylint` from 3.3.1 to 3.3.4
- [Release notes](https://github.com/pylint-dev/pylint/releases)
- [Commits](pylint-dev/pylint@v3.3.1...v3.3.4)

Updates `ruff` from 0.6.7 to 0.9.6
- [Release notes](https://github.com/astral-sh/ruff/releases)
- [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md)
- [Commits](astral-sh/ruff@0.6.7...0.9.6)

---
updated-dependencies:
- dependency-name: granian
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: litestar
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: uvloop
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: msgspec
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: pydantic-settings
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: ctranslate2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: transformers
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: sentence-transformers
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: protobuf
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: pymupdf
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: redis
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: hiredis
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: torch
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: pyright
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: pytest
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: pylint
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: ruff
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/pip/dependencies-638c008c95 branch from 1458d8a to 1d6e94e Compare February 11, 2025 22:39
@github-actions github-actions bot merged commit a784b31 into main Feb 11, 2025
10 checks passed
@dependabot dependabot bot deleted the dependabot/pip/dependencies-638c008c95 branch February 11, 2025 23:32
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.

1 participant