Skip to content

chore(deps)(deps-dev): bump the development-dependencies group with 17 updates#62

Merged
badhope merged 1 commit into
mainfrom
dependabot/pip/development-dependencies-fbef4e57c1
Jun 10, 2026
Merged

chore(deps)(deps-dev): bump the development-dependencies group with 17 updates#62
badhope merged 1 commit into
mainfrom
dependabot/pip/development-dependencies-fbef4e57c1

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 10, 2026

Copy link
Copy Markdown
Contributor

Updates the requirements on anthropic, google-generativeai, chromadb, sentence-transformers, pypdf2, python-docx, openpyxl, python-pptx, pandas, pillow, playwright, pytest, pytest-asyncio, pytest-cov, pytest-rerunfailures, ruff and setuptools to permit the latest version.
Updates anthropic to 0.109.1

Release notes

Sourced from anthropic's releases.

v0.109.1

0.109.1 (2026-06-09)

Full Changelog: v0.109.0...v0.109.1

Bug Fixes

  • api: add frontier_llm refusal category (d3a806b)
Changelog

Sourced from anthropic's changelog.

0.109.1 (2026-06-09)

Full Changelog: v0.109.0...v0.109.1

Bug Fixes

  • api: add frontier_llm refusal category (d3a806b)

0.109.0 (2026-06-09)

Full Changelog: v0.108.0...v0.109.0

Features

  • api: add support for Managed Agents deployments and environment variable credentials (47633bf)

0.108.0 (2026-06-09)

Full Changelog: v0.107.1...v0.108.0

Features

  • api: add support for claude-mythos-5 and claude-fable-5, with support for server-side fallbacks on refusal (6b76649)
  • client: adds client-side fallbacks middleware for API providers that do not support server-side fallbacks (6b76649)

0.107.1 (2026-06-07)

Full Changelog: v0.107.0...v0.107.1

Bug Fixes

  • foundry: send x-api-key header for API-key auth (#62) (1338141), closes #1661

0.107.0 (2026-06-06)

Full Changelog: v0.106.0...v0.107.0

Features

  • api: small updates to Managed Agents types (72923f9)

0.106.0 (2026-06-05)

Full Changelog: v0.105.2...v0.106.0

Features

  • api: mark Claude Opus 4.1 as deprecated (85068cc)

... (truncated)

Commits
  • 992f11c release: 0.109.1
  • 2ff6aee fix(api): add frontier_llm refusal category
  • 42704bc release: 0.109.0
  • 79c22fc feat(api): add support for Managed Agents deployments and environment variabl...
  • 402be64 release: 0.108.0 (#1667)
  • 260e687 release: 0.107.1
  • 49c5395 fix(foundry): send x-api-key header for API-key auth (#62)
  • 4ceca72 release: 0.107.0
  • 3a6f9d9 feat(api): small updates to Managed Agents types
  • 6a70c9f release: 0.106.0
  • Additional commits viewable in compare view

Updates google-generativeai to 0.8.6

Release notes

Sourced from google-generativeai's releases.

Archived

What's Changed

Add a warning message on import telling people that this package is archived.

Full Changelog: google-gemini/deprecated-generative-ai-python@v0.8.5...v0.8.6

Changelog

Sourced from google-generativeai's changelog.

v0.2.2

  • Handle maximum batch size for embed_text.
  • Restore types.ModelNameOptions.
  • Update tuning to handle more dataset types (json, pandas, urls, google-sheets).
  • Expose count_text_tokens
  • Expose operations management.
  • Allow users to pass custom metadata (HTML headers).
  • Add dataclass prettyprinting.

v0.2.1

  • Bugfix: Add missing enum names to saftey_types.py
  • Update to google.ai.generativelanguage v0.3.3

v0.2

  • More flexible safety settings:
    • accept strings, ints for enums.
    • accept a {category:threshold} dict in addition to the list of dicts format ([{"category": category, "threshold": threshold}, ...]).
  • Add support for batched embeddings.
  • Add support for tuning:
    • Add get_{base,tuned}_model.
    • Add list_tuned_models.
    • Add create_tuned_model.

v0.1

Initial version

Commits

Updates chromadb to 1.5.9

Release notes

Sourced from chromadb's releases.

1.5.9

Version: 1.5.9 Git ref: refs/tags/1.5.9 Build Date: 2026-05-05T05:55 PIP Package: chroma-1.5.9.tar.gz Github Container Registry Image: :1.5.9 DockerHub Image: :1.5.9

What's Changed

... (truncated)

Commits

Updates sentence-transformers to 5.5.1

Release notes

Sourced from sentence-transformers's releases.

v5.5.1 - Small Multimodal patch

This patch release fixes a small quirk with multimodal inference when using single-key multimodal inputs like model.encode({"image": ...}).

Install this version with

# Training + Inference
pip install sentence-transformers[train]==5.5.1
Inference only, use one of:
pip install sentence-transformers==5.5.1
pip install sentence-transformers[onnx-gpu]==5.5.1
pip install sentence-transformers[onnx]==5.5.1
pip install sentence-transformers[openvino]==5.5.1
Multimodal dependencies (optional):
pip install sentence-transformers[image]==5.5.1
pip install sentence-transformers[audio]==5.5.1
pip install sentence-transformers[video]==5.5.1
Or combine as needed:
pip install sentence-transformers[train,onnx,image]==5.5.1

Bug fixed

Previously, inference like model.encode({"image": ...}) or model.encode([{"image": ...}, ...]) would be inferred as the ("image",) modality, which differed from the inferred modality of "image" for just model.encode(my_image) or model.encode([my_image, my_image_2, ...]).

This results in confusing errors if the model doesn't have a modality_config mapping for ("image",) in addition to "image", so now a single-key multimodal dict is collapsed to the bare modality (just "image" in this example).

This affected this code:

from sentence_transformers import SentenceTransformer
model = SentenceTransformer('BAAI/BGE-VL-base', trust_remote_code=True)
embedding = model.encode({"image": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/blog/ettin-reranker/mteb_ndcg10_all-MiniLM-L6-v2.png"})
print(embedding.shape)

Which previously failed as the model only implements a path for "text", "image", and ("image", "text").

All Changes

Full Changelog: huggingface/sentence-transformers@v5.5.0...v5.5.1

Commits
  • ce3ec6d Release v5.5.1
  • 610a7c5 [fix] Collapse single-key multimodal dicts to bare modality (#3779)
  • f9f3269 Merge branch 'main' into v5.5-release
  • 02dc21d Update index tip for v5.5.0 (#3774)
  • 833828b Release v5.5.0
  • 98ac358 [docs] Load models in float32 in the training examples & docs (#3773)
  • d8ee041 [docs] Use modality-neutral terms (input, document) in loss docs & docstrin...
  • 4c6850e [examples] Avoid LoggingHandler, silence httpx in examples (#3771)
  • 1418823 docs: fix grammar in parallel-sentence-mining README (#3769)
  • 22a383d [docs] Use direct class imports in examples & docs (drop `losses.MSELoss(.....
  • Additional commits viewable in compare view

Updates pypdf2 to 3.0.1

Changelog

Sourced from pypdf2's changelog.

CHANGELOG

Version 6.13.1, 2026-06-08

Security (SEC)

  • Prevent infinite loops when processing threads/articles (#3839)

Full Changelog

Version 6.13.0, 2026-06-05

Security (SEC)

  • Avoid infinite loops for outlines and text extraction (#3830)

New Features (ENH)

  • Add Japanese predefined CMaps (#3800)
  • Font: Collect all character widths, not only those that can be unicode mapped (#3798)

Robustness (ROB)

  • Recover a corrupt trailing startxref pointer (closes #3238) (#3826)
  • Handle /Pages node without /Kids during flattening (#3825)
  • Accept inline image EI marker at the end of a content stream (#3827)

Maintenance (MAINT)

  • Type the always-raising deprecation helpers as NoReturn (#3819)

Full Changelog

Version 6.12.2, 2026-05-26

Security (SEC)

  • Optimize _decode_png_prediction regarding memory and speed (#3806)
  • Improve loop control in text extraction (#3805)

Full Changelog

Version 6.12.1, 2026-05-22

Security (SEC)

  • Limit input size and element count for XMP metadata (#3796)

Robustness (ROB)

  • Prevent cyclic parent hierarchies for inherited dictionaries (#3795)
  • Deal with invalid first code in LZW decoder (#3794)

Full Changelog

Version 6.12.0, 2026-05-21

Security (SEC)

... (truncated)

Commits

Updates python-docx to 1.2.0

Changelog

Sourced from python-docx's changelog.

1.2.0 (2025-06-16) ++++++++++++++++++

  • Add support for comments
  • Drop support for Python 3.8, add testing for Python 3.13

1.1.2 (2024-05-01) ++++++++++++++++++

  • Fix #1383 Revert lxml<=4.9.2 pin that breaks Python 3.12 install
  • Fix #1385 Support use of Part._rels by python-docx-template
  • Add support and testing for Python 3.12

1.1.1 (2024-04-29) ++++++++++++++++++

  • Fix #531, #1146 Index error on table with misaligned borders
  • Fix #1335 Tolerate invalid float value in bottom-margin
  • Fix #1337 Do not require typing-extensions at runtime

1.1.0 (2023-11-03) ++++++++++++++++++

  • Add BlockItemContainer.iter_inner_content()

1.0.1 (2023-10-12) ++++++++++++++++++

  • Fix #1256: parse_xml() and OxmlElement moved.
  • Add Hyperlink.fragment and .url

1.0.0 (2023-10-01) +++++++++++++++++++

  • Remove Python 2 support. Supported versions are 3.7+
  • Fix #85: Paragraph.text includes hyperlink text
  • Add #1113: Hyperlink.address
  • Add Hyperlink.contains_page_break
  • Add Hyperlink.runs
  • Add Hyperlink.text
  • Add Paragraph.contains_page_break
  • Add Paragraph.hyperlinks
  • Add Paragraph.iter_inner_content()
  • Add Paragraph.rendered_page_breaks
  • Add RenderedPageBreak.following_paragraph_fragment

... (truncated)

Commits
  • e454546 release: prepare v1.2.0 release
  • 1fe6601 build: small adjustments for tox
  • 4fbe1f6 docs: add Comments docs
  • a809d6c comments: add Comment.text
  • e3a321d comments: add Run.mark_comment_range()
  • af3b973 comments: add Document.add_comment()
  • 66da522 xfail: acceptance test for Document.add_comment()
  • 761f4cc comments: add Comment.author, .initials setters
  • 8ac9fc4 comments: add Comments.add_comment()
  • d360409 xfail: acceptance test for Comment mutations
  • Additional commits viewable in compare view

Updates openpyxl to 3.1.5

Updates python-pptx to 1.0.2

Changelog

Sourced from python-pptx's changelog.

1.0.2 (2024-08-07) ++++++++++++++++++

  • fix: #1003 restore read-only enum members

1.0.1 (2024-08-05) ++++++++++++++++++

  • fix: #1000 add py.typed

1.0.0 (2024-08-03) ++++++++++++++++++

  • fix: #929 raises on JPEG with image/jpg MIME-type
  • fix: #943 remove mention of a Px Length subtype
  • fix: #972 next-slide-id fails in rare cases
  • fix: #990 do not require strict timestamps for Zip
  • Add type annotations

0.6.23 (2023-11-02) +++++++++++++++++++

  • fix: #912 Pillow<=9.5 constraint entails security vulnerability

0.6.22 (2023-08-28) +++++++++++++++++++

  • Add #909 Add imgW, imgH params to shapes.add_ole_object()
  • fix: #754 _Relationships.items() raises
  • fix: #758 quote in autoshape name must be escaped
  • fix: #746 update Python 3.x support in docs
  • fix: #748 setup's license should be short string
  • fix: #762 AttributeError: module 'collections' has no attribute 'abc' (Windows Python 3.10+)

0.6.21 (2021-09-20) +++++++++++++++++++

  • Fix #741 _DirPkgReader must implement .contains()

0.6.20 (2021-09-14) +++++++++++++++++++

  • Fix #206 accommodate NULL target-references in relationships.
  • Fix #223 escape image filename that appears as literal in XML.

... (truncated)

Commits

Updates pandas to 2.3.3

Release notes

Sourced from pandas's releases.

Pandas 2.3.3

We are pleased to announce the release of pandas 2.3.3. This release includes some improvements and fixes to the future string data type (preview feature for the upcoming pandas 3.0). We recommend that all users upgrade to this version.

See the full whatsnew for a list of all the changes. Pandas 2.3.3 supports Python 3.9 and higher, and is the first release to support Python 3.14.

The release will be available on the conda-forge channel:

conda install pandas --channel conda-forge

Or via PyPI:

python3 -m pip install --upgrade pandas

Please report any issues with the release on the pandas issue tracker.

Thanks to all the contributors who made this release possible.

Commits
  • 9c8bc3e RLS: 2.3.3
  • 6aa788a [backport 2.3.x] DOC: prepare 2.3.3 whatsnew notes for release (#62499) (#62508)
  • b64f0df [backport 2.3.x] BUG: avoid validation error for ufunc with string[python] ar...
  • 058eb2b [backport 2.3.x] BUG: String[pyarrow] comparison with mixed object (#62424) (...
  • 2ca088d [backport 2.3.x] DEPR: remove the Period resampling deprecation (#62480) (#62...
  • 92bf98f [backport 2.3.x] BUG: fix .str.isdigit to honor unicode superscript for older...
  • e57c7d6 Backport PR #62452 on branch 2.3.x (TST: Adjust tests for numexpr 2.13) (#62454)
  • e0fe9a0 Backport to 2.3.x: REGR: from_records not initializing subclasses properly (#...
  • 23a1085 BUG: improve future warning for boolean operations with missaligned indexes (...
  • 6113696 Backport PR #62396 on branch 2.3.x (PKG/DOC: indicate Python 3.14 support in ...
  • Additional commits viewable in compare view

Updates pillow to 12.2.0

Release notes

Sourced from pillow's releases.

12.2.0

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

Documentation

Dependencies

Testing

Other changes

... (truncated)

Changelog

Sourced from pillow's changelog.

Changelog (Pillow)

11.1.0 and newer

See GitHub Releases:

11.0.0 (2024-10-15)

  • Update licence to MIT-CMU #8460 [hugovk]

  • Conditionally define ImageCms type hint to avoid requiring core #8197 [radarhere]

  • Support writing LONG8 offsets in AppendingTiffWriter #8417 [radarhere]

  • Use ImageFile.MAXBLOCK when saving TIFF images #8461 [radarhere]

  • Do not close provided file handles with libtiff when saving #8458 [radarhere]

  • Support ImageFilter.BuiltinFilter for I;16* images #8438 [radarhere]

  • Use ImagingCore.ptr instead of ImagingCore.id #8341 [homm, radarhere, hugovk]

  • Updated EPS mode when opening images without transparency #8281 [Yay295, radarhere]

  • Use transparency when combining P frames from APNGs #8443 [radarhere]

  • Support all resampling filters when resizing I;16* images #8422 [radarhere]

  • Free memory on early return #8413 [radarhere]

  • Cast int before potentially exceeding INT_MAX #8402 [radarhere]

... (truncated)

Commits

Updates playwright to 1.60.0

Release notes

Sourced from playwright's releases.

v1.60.0

🐍 Python improvements

🌐 HAR recording on Tracing

tracing.start_har() / tracing.stop_har() expose HAR recording as a first-class tracing API, with the same content, mode and url_filter options as record_har:

context.tracing.start_har("trace.har")
page = context.new_page()
page.goto("https://playwright.dev")
context.tracing.stop_har()

🪝 Drop API

New locator.drop() simulates an external drag-and-drop of files or clipboard-like data onto an element. Playwright dispatches dragenter, dragover, and drop with a synthetic DataTransfer in the page context — works cross-browser and is great for testing upload zones:

page.locator("#dropzone").drop(
    files={"name": "note.txt", "mime_type": "text/plain", "buffer": b"hello"},
)
page.locator("#dropzone").drop(
data={
"text/plain": "hello world",
"text/uri-list": "https://example.com",
},
)

🎯 Aria snapshots

New APIs

Browser, Context and Page

Locators and Assertions

... (truncated)

Commits
  • 93f3201 chore: roll driver to 1.60.0 (#3079)
  • 0ebdf2d feat(assertions): add expect.soft() for collecting multiple failures (

…7 updates

Updates the requirements on [anthropic](https://github.com/anthropics/anthropic-sdk-python), [google-generativeai](https://github.com/google/generative-ai-python), [chromadb](https://github.com/chroma-core/chroma), [sentence-transformers](https://github.com/huggingface/sentence-transformers), [pypdf2](https://github.com/py-pdf/PyPDF2), [python-docx](https://github.com/python-openxml/python-docx), [openpyxl](https://openpyxl.readthedocs.io), [python-pptx](https://github.com/scanny/python-pptx), [pandas](https://github.com/pandas-dev/pandas), [pillow](https://github.com/python-pillow/Pillow), [playwright](https://github.com/microsoft/playwright-python), [pytest](https://github.com/pytest-dev/pytest), [pytest-asyncio](https://github.com/pytest-dev/pytest-asyncio), [pytest-cov](https://github.com/pytest-dev/pytest-cov), [pytest-rerunfailures](https://github.com/pytest-dev/pytest-rerunfailures), [ruff](https://github.com/astral-sh/ruff) and [setuptools](https://github.com/pypa/setuptools) to permit the latest version.

Updates `anthropic` to 0.109.1
- [Release notes](https://github.com/anthropics/anthropic-sdk-python/releases)
- [Changelog](https://github.com/anthropics/anthropic-sdk-python/blob/main/CHANGELOG.md)
- [Commits](anthropics/anthropic-sdk-python@v0.40.0...v0.109.1)

Updates `google-generativeai` to 0.8.6
- [Release notes](https://github.com/google/generative-ai-python/releases)
- [Changelog](https://github.com/google-gemini/deprecated-generative-ai-python/blob/main/RELEASE.md)
- [Commits](google-gemini/deprecated-generative-ai-python@v0.8.0...v0.8.6)

Updates `chromadb` to 1.5.9
- [Release notes](https://github.com/chroma-core/chroma/releases)
- [Changelog](https://github.com/chroma-core/chroma/blob/main/RELEASE_PROCESS.md)
- [Commits](chroma-core/chroma@0.5.0...1.5.9)

Updates `sentence-transformers` to 5.5.1
- [Release notes](https://github.com/huggingface/sentence-transformers/releases)
- [Commits](huggingface/sentence-transformers@v3.0.0...v5.5.1)

Updates `pypdf2` to 3.0.1
- [Release notes](https://github.com/py-pdf/PyPDF2/releases)
- [Changelog](https://github.com/py-pdf/pypdf/blob/main/CHANGELOG.md)
- [Commits](https://github.com/py-pdf/PyPDF2/commits)

Updates `python-docx` to 1.2.0
- [Changelog](https://github.com/python-openxml/python-docx/blob/master/HISTORY.rst)
- [Commits](python-openxml/python-docx@v1.1.0...v1.2.0)

Updates `openpyxl` to 3.1.5

Updates `python-pptx` to 1.0.2
- [Changelog](https://github.com/scanny/python-pptx/blob/master/HISTORY.rst)
- [Commits](scanny/python-pptx@v1.0.0...v1.0.2)

Updates `pandas` to 2.3.3
- [Release notes](https://github.com/pandas-dev/pandas/releases)
- [Commits](pandas-dev/pandas@v2.0.0...v2.3.3)

Updates `pillow` to 12.2.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@10.0.0...12.2.0)

Updates `playwright` to 1.60.0
- [Release notes](https://github.com/microsoft/playwright-python/releases)
- [Commits](microsoft/playwright-python@v1.45.0...v1.60.0)

Updates `pytest` to 9.0.3
- [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.0.0...9.0.3)

Updates `pytest-asyncio` to 1.4.0
- [Release notes](https://github.com/pytest-dev/pytest-asyncio/releases)
- [Commits](pytest-dev/pytest-asyncio@v0.24.0...v1.4.0)

Updates `pytest-cov` to 7.1.0
- [Changelog](https://github.com/pytest-dev/pytest-cov/blob/master/CHANGELOG.rst)
- [Commits](pytest-dev/pytest-cov@v5.0.0...v7.1.0)

Updates `pytest-rerunfailures` to 16.3
- [Changelog](https://github.com/pytest-dev/pytest-rerunfailures/blob/master/CHANGES.rst)
- [Commits](pytest-dev/pytest-rerunfailures@14.0...16.3)

Updates `ruff` to 0.15.16
- [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.0...0.15.16)

Updates `setuptools` to 82.0.1
- [Release notes](https://github.com/pypa/setuptools/releases)
- [Changelog](https://github.com/pypa/setuptools/blob/main/NEWS.rst)
- [Commits](pypa/setuptools@v75.0.0...v82.0.1)

---
updated-dependencies:
- dependency-name: anthropic
  dependency-version: 0.109.1
  dependency-type: direct:development
  dependency-group: development-dependencies
- dependency-name: google-generativeai
  dependency-version: 0.8.6
  dependency-type: direct:development
  dependency-group: development-dependencies
- dependency-name: chromadb
  dependency-version: 1.5.9
  dependency-type: direct:development
  dependency-group: development-dependencies
- dependency-name: sentence-transformers
  dependency-version: 5.5.1
  dependency-type: direct:development
  dependency-group: development-dependencies
- dependency-name: pypdf2
  dependency-version: 3.0.1
  dependency-type: direct:development
  dependency-group: development-dependencies
- dependency-name: python-docx
  dependency-version: 1.2.0
  dependency-type: direct:development
  dependency-group: development-dependencies
- dependency-name: openpyxl
  dependency-version: 3.1.5
  dependency-type: direct:development
  dependency-group: development-dependencies
- dependency-name: python-pptx
  dependency-version: 1.0.2
  dependency-type: direct:development
  dependency-group: development-dependencies
- dependency-name: pandas
  dependency-version: 2.3.3
  dependency-type: direct:development
  dependency-group: development-dependencies
- dependency-name: pillow
  dependency-version: 12.2.0
  dependency-type: direct:development
  dependency-group: development-dependencies
- dependency-name: playwright
  dependency-version: 1.60.0
  dependency-type: direct:development
  dependency-group: development-dependencies
- dependency-name: pytest
  dependency-version: 9.0.3
  dependency-type: direct:development
  dependency-group: development-dependencies
- dependency-name: pytest-asyncio
  dependency-version: 1.4.0
  dependency-type: direct:development
  dependency-group: development-dependencies
- dependency-name: pytest-cov
  dependency-version: 7.1.0
  dependency-type: direct:development
  dependency-group: development-dependencies
- dependency-name: pytest-rerunfailures
  dependency-version: '16.3'
  dependency-type: direct:development
  dependency-group: development-dependencies
- dependency-name: ruff
  dependency-version: 0.15.16
  dependency-type: direct:development
  dependency-group: development-dependencies
- dependency-name: setuptools
  dependency-version: 82.0.1
  dependency-type: direct:development
  dependency-group: development-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python Pull requests that update python code labels Jun 10, 2026
@dependabot dependabot Bot requested a review from badhope as a code owner June 10, 2026 09:24
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python Pull requests that update python code labels Jun 10, 2026
@badhope badhope merged commit 9572718 into main Jun 10, 2026
5 of 10 checks passed
@badhope badhope deleted the dependabot/pip/development-dependencies-fbef4e57c1 branch June 10, 2026 09:25
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