Skip to content

Bump the python-dependencies group across 1 directory with 36 updates - #106

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pip/python-dependencies-f8e480321d
Open

Bump the python-dependencies group across 1 directory with 36 updates#106
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pip/python-dependencies-f8e480321d

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 2, 2026

Copy link
Copy Markdown
Contributor

Updates the requirements on area-detector-handlers, dask, dill, event-model, h5py, historydict, ipython, lmfit, matplotlib, numba, numpy, pandas, pillow, pims, pytz, reportlab, scikit-image, scipy, tifffile, threadpoolctl, tqdm, databroker, pyolog, build, coverage, hdf5plugin, pre-commit, pytest, ruff, twine, numpydoc, sphinx, sphinx-copybutton, sphinx-rtd-theme, setuptools and setuptools-scm to permit the latest version.
Updates area-detector-handlers to 0.0.10

Commits

Updates dask to 2026.8.0

Release notes

Sourced from dask's releases.

2026.8.0

Changes

See the Changelog for more information.

Commits
  • 9dc535d Version 2026.8.0
  • 817e5ff docs: fix duplicated-word typos in docstrings (#12516)
  • ba5045e Bump scientific-python/issue-from-pytest-log-action from 1.6.0 to 1.6.1 (#12524)
  • a543291 docs: fix broken cross-references in expr-system docs (#12494)
  • aac2ce2 Suppress Pandas4Warning in nightly CI caused by PyArrow (#12498)
  • fc8e30b Fix pixi compatibility with upstream distributed (#12497)
  • b3e7ee1 Update guidance on AI-assisted PRs (#12496)
  • f42727f Bump scientific-python/issue-from-pytest-log-action from 1.5.0 to 1.6.0 (#12490)
  • 416e177 Bump astral-sh/setup-uv from 8.2.0 to 8.3.0 (#12491)
  • e0be880 Version 2026.7.0
  • Additional commits viewable in compare view

Updates dill to 0.4.1

Commits

Updates event-model to 1.24.0

Release notes

Sourced from event-model's releases.

v1.24.0

What's Changed

Full Changelog: bluesky/event-model@v1.23.1...v1.24.0

Commits
  • 7be64ff Merge pull request #377 from bluesky/376-v1.24.0-release-notes
  • a04b218 Add v1.24.0 release notes
  • 9d02f49 Added object_classes field to descriptor
  • 4c3680b ENH: drop python 3.8, 3.9 and add support for 3.13
  • ee1fcac Merge pull request #366 from bluesky/v1.23.1-release-notes
  • 2ee280d Added release notes for upcoming v1.23.1
  • e312d65 ENH: add union type hint for base model documents
  • 1b8e759 STY: remove spurious comments
  • 3cabe77 ENH: generate Document union type
  • 126c0ea Merge pull request #356 from tacaswell/fix/missing_init
  • Additional commits viewable in compare view

Updates h5py to 3.16.0

Commits
  • b2f0347 Merge pull request #2807 from takluyver/prepare-3.16
  • f0dedaa Add zlib update to release notes
  • 1e04026 Merge pull request #2808 from takluyver/zlib-1.3.2
  • c5c8f06 Fix another reference to zlib DLL
  • d872c0c Use a newer bugfix release of HDF5 1.14 on Azure pipelines
  • 71c655a Fix calling zlib script on Windows Azure CI
  • 2f5bf86 Fix for new names z.lib & z.dll
  • 47ce1d8 Reduce duplicated code building zlib on Windows
  • d5c8b5d Try building zlib directly from source on Windows ARM64 as well
  • 846abfc Update zlib to 1.3.2 for Windows & Mac wheels
  • Additional commits viewable in compare view

Updates historydict to 1.2.6

Release notes

Sourced from historydict's releases.

v1.2.6

What's Changed

Full Changelog: Nikea/historydict@v1.2.5...v1.2.6

Changelog

Sourced from historydict's changelog.

Copyright (c) 2015, Brookhaven Science Associates, Brookhaven

National Laboratory. All rights reserved.

BSD 3-Clause

from future import (absolute_import, division, print_function, unicode_literals) import sys import logging import hashlib import sqlite3 import json try: from collections.abc import MutableMapping except ImportError: from collections import MutableMapping

version = '1.2.6'

logger = logging.getLogger(name)

TABLE_NAME = 'HISTORY_1_1' CREATION_QUERY = """ CREATE TABLE {0} ( _id CHAR(40), N INT, blob BLOB)""".format(TABLE_NAME) INSERTION_QUERY = """ INSERT INTO {0} (_id, N, blob) VALUES (?, 1 + (SELECT COALESCE(MAX(N), 0) FROM {0} WHERE _id=?), ?)""".format(TABLE_NAME) SELECTION_QUERY = """ SELECT blob FROM {0} WHERE _id=? ORDER BY N DESC LIMIT ?""".format(TABLE_NAME) SHOW_TABLES_QUERY = """SELECT name FROM sqlite_master WHERE type='table'""" DELETE_ALL_QUERY = "DELETE FROM {0}".format(TABLE_NAME) DELETE_ONE_QUERY = "DELETE FROM {0} WHERE _id=?".format(TABLE_NAME)

class HistoryDict(MutableMapping): """

... (truncated)

Commits
  • d8c6e35 Merge pull request #36 from tacaswell/rel/125_versions
  • c42a845 CI: add py311 to the test matrix
  • 83e6da3 CI: add GHA testing workflow
  • 86b45d4 REL: bump version to 1.2.6
  • bc1b9c4 CI: remove defunct travis config
  • 5cf268d DOC: remove outdate badges + build information
  • 3b2a137 BLD: add license to setup.py metadata
  • 68184c2 REL: v1.2.5
  • 5660e4f Merge pull request #35 from tacaswell/lic/add_license
  • 372e7b6 LIC: add copy of BSD-3-Clause to repo
  • Additional commits viewable in compare view

Updates ipython to 9.17.0

Commits
  • 3278f6f release 9.17.0
  • 40cfb95 Update what's new for 9.17
  • 2ed42ae Fix RST formatting in display_functions.py
  • a487a06 change emojis
  • 7f0ee55 Declare IPython's built-in magics lazily
  • ee02392 Only run the psutil-free kitty detection test where /proc exists
  • af386cf Annotate _find_dunder and put measured numbers in the whatsnew
  • b7509b6 Add a whatsnew entry for the second startup pass
  • a42fdc0 Defer mimetypes, locale, glob and runpy to their use sites
  • cab037e Detect the kitty graphics protocol without importing psutil
  • Additional commits viewable in compare view

Updates lmfit to 1.3.4

Release notes

Sourced from lmfit's releases.

1.3.4

Mostly maintenance and small bug fixes:

  • capture and ignore std_dev=0 warnings from uncertainties package
  • better ensure that parameter values and sterr are floats, not np.floats
  • fix Doniach formula in docstring (#966)
  • add bose and fermi lineshapes, and BoseModel and FermiModel (with tests)
  • remove deprecated disp argument for ampgo
  • fix typos in README.rst
  • fix typos in doc
  • update to latest SciPy/NumPy version
  • update pre-commit and CI hooks
  • update zenodo link
  • several fixes for deprecations and test failures
  • do not test for warnings from upstream code that might change or be suppressed or altered
  • update license name for PyPI compatibiilty
Changelog

Sourced from lmfit's changelog.

Version 1.3.4 Release Notes (2025-July-19)

Fixes:

  • capture and ignore std_dev=0 warnings from 'uncertainties' package
  • ensure values / std errors are floats instead of np.floats
  • fix formula in docstring of DoniachModel
  • update license name for PyPI compatibility

Additions:

  • add bose and fermi lineshapes, and BoseModel and FermiModel (with tests)

Build/maintenance:

  • use latest SciPy/NumPy version for CI tests
  • fix several DeprecationWarnings due to updated dependencies
  • fix typos in documentation and docstrings
  • update Zenodo link

.. _whatsnew_133_label:

Version 1.3.3 Release Notes (2025-March-12)

Fixes:

  • fix loading spline models with more than five knots (Issue #985)
  • improved SplineModel to explicitly allow more knots, make it easier to evaluate and save/reload (Issue #985 PR #989, Paul Müller)
  • improvements to adding Parameters.
  • support Model functions with "barestar" syntax (PR #982)
  • fix several related problems with providing a Jacobian function, especially for consistency across solvers (including least_squares), and for pickling (PR #973 Ville Yrjänä)
  • fix Step and Rectangle Models to allow a negative value for sigma, indicating a downward step (PR #970)

Build, Maintenance:

  • update issue templates
  • add test for consistent init_fit and best_fit for saved/looded SplineModel
  • fix NumPy v2 DeprecationWarning
  • uppdate SciPy/NumPy dependencies.
  • remove numexpr dependency (again)
  • drop support for Python 3.8, add Python 3.13
  • asteval no longer raises NameError to Python, so we catch exceptions from asteval when creating parameters.
  • avoid setting stderr to None for uncertainties calculations.

Documentation and Examples:

  • add example with uncertainties in both x and y (#992)
  • make sign of residual calculations in model.py consistent with documentation (Discussion #986, PR#987, Timothy-J-Warner)

... (truncated)

Commits
  • 0566445 update license name for PyPI compatibiilty
  • 34b70f2 Merge pull request #1009 from lmfit/cleanups
  • 91c3328 fix docstrings for Bose and Fermi Models, add to docs
  • ab055a0 np.float128 not available universally
  • 11f2d3d more fixes for deprecations and test failures
  • 7f4f28e better ensure that parameter values and sterr are floats, not np.floats
  • 59b561d remove deprecated disp argument for ampgo
  • 0f8c28e add bose and fermi lineshape functions and models, with test
  • a922fae Merge pull request #1008 from zyzzyxdonta/remove-stray-backticks-in-docs
  • eb83568 Remove stray backticks; fix plural of linked class
  • Additional commits viewable in compare view

Updates matplotlib to 3.11.1

Release notes

Sourced from matplotlib's releases.

REL: v3.11.1

This is the first bugfix release of the 3.11.x series.

This release contains several bug-fixes and adjustments:

  • Fix tight layout of multiple subplots with sharey=True
  • Fix NoNorm cursor formatting for uint8 images
  • Fix occasional misalignment in reported mouse position (also fix a bug with canvas height)
  • Fix clipped Axis labels on 3D plots with tight layout
  • Fix inverted Axis on 3D plots
  • Fix restoring 'auto' aspect in 3D axes after switching from 'equal'
  • Fix missing glyphs when subsetting Type 1 fonts in PDF
  • Fix oversized embedding of Type 42 fonts in PDF/PostScript files

As well as several documentation and typing improvements and corrections.

Commits
  • 3c1757a REL: v3.11.1
  • 792c6b5 DOC: Prepare for 3.11.1
  • aaff9f6 Merge branch 'v3.11.0-doc' into v3.11.x
  • d4f4527 Merge pull request #32052 from meeseeksmachine/auto-backport-of-pr-32038-on-v...
  • 6ad4bcf Merge pull request #32050 from meeseeksmachine/auto-backport-of-pr-31304-on-v...
  • 7fb74d3 Merge pull request #32051 from meeseeksmachine/auto-backport-of-pr-32037-on-v...
  • c624aec Backport PR #32038: Fix occasional misalignment in reported mouse position (a...
  • 8eda2b7 Backport PR #32037: Bump the actions group with 3 updates
  • a0e7ae5 Backport PR #31304: Fix restoring 'auto' aspect in 3D axes after switching fr...
  • 9001323 Merge pull request #32047 from meeseeksmachine/auto-backport-of-pr-32025-on-v...
  • Additional commits viewable in compare view

Updates numba to 0.67.0

Release notes

Sourced from numba's releases.

0.67.0

Major Numba release, adding NumPy 2.5 support. Please view the release notes here: https://numba.readthedocs.io/en/0.67.0/release/0.67.0-notes.html

Commits
  • 3190b91 Merge pull request #10772 from swap357/release0.67
  • f68f603 add current pr on 0.67 pr list
  • 86a975c update final release date for 0.67
  • c7f14cf Merge pull request #10726 from swap357/pin_deps_0.67
  • 123fa28 update test refs and pin dependencies for release0.67
  • 0c89330 Merge pull request #10724 from swap357/changelog_0.67
  • ffaa017 Merge pull request #10723 from swap357/update_version_support_table_0.67.0rc1
  • af0d879 fix wrapping on release notes
  • a5e4654 Update docs/source/release/0.67.0-notes.rst
  • e85720e Update docs/source/release/0.67.0-notes.rst
  • Additional commits viewable in compare view

Updates numpy to 2.4.6

Release notes

Sourced from numpy's releases.

v2.4.6 (May 18, 2026)

NumPy 2.4.6 Release Notes

NumPy 2.4.6 is a quick release that fixes a regression discovered in the 2.4.5 release.

This release supports Python versions 3.11-3.14

Contributors

A total of 4 people contributed to this release. People with a "+" by their names contributed a patch for the first time.

  • !EarlMilktea
  • Charles Harris
  • Sebastian Berg
  • Warren Weckesser

Pull requests merged

A total of 4 pull requests were merged for this release.

  • #31444: MAINT: Prepare 2.4.x for further development
  • #31453: BUG: Fix regression in arr.conj()
  • #31459: BUG: np.linalg.svd(..., hermitian=True) returns non-unitary...
  • #31460: BUG: Don't call INCREF/DECREF on descr in NpyStringAcquireAllocator...
Changelog

Sourced from numpy's changelog.

This is a walkthrough of the NumPy 2.4.0 release on Linux, which will be the first feature release using the numpy/numpy-release <https://github.com/numpy/numpy-release>__ repository.

The commands can be copied into the command line, but be sure to replace 2.4.0 with the correct version. This should be read together with the :ref:general release guide <prepare_release>.

Facility preparation

Before beginning to make a release, use the requirements/*_requirements.txt files to ensure that you have the needed software. Most software can be installed with pip, but some will require apt-get, dnf, or whatever your system uses for software. You will also need a GitHub personal access token (PAT) to push the documentation. There are a few ways to streamline things:

  • Git can be set up to use a keyring to store your GitHub personal access token. Search online for the details.

Prior to release

Add/drop Python versions

When adding or dropping Python versions, multiple config and CI files need to be edited in addition to changing the minimum version in pyproject.toml. Make these changes in an ordinary PR against main and backport if necessary. We currently release wheels for new Python versions after the first Python RC once manylinux and cibuildwheel support that new Python version.

Backport pull requests

Changes that have been marked for this release must be backported to the maintenance/2.4.x branch.

Update 2.4.0 milestones

Look at the issues/prs with 2.4.0 milestones and either push them off to a later version, or maybe remove the milestone. You may need to add a milestone.

Check the numpy-release repo

... (truncated)

Commits
  • b832a09 Merge pull request #31462 from charris/prepare-2.4.6
  • 57cc147 REL: Prepare for the NumPy 2.4.6 release
  • 0c72b0b Merge pull request #31459 from charris/backport-31347
  • 9778d26 BUG: core: Don't call INCREF/DECREF on descr in NpyStringAcquireAllocator. (#...
  • e0e3876 BUG: core: Don't call INCREF/DECREF on descr in NpyStringAcquireAllocator. (#...
  • d1bffeb BUG: np.linalg.svd(..., hermitian=True) returns non-unitary vh (#31347)
  • 8d8d7e5 Merge pull request #31453 from seberg/issue-31452
  • bddaab7 BUG: Fix regression in arr.conj()
  • 37a1ecc Merge pull request #31444 from charris/begin-2.4.6
  • 3c0e043 MAINT: Prepare 2.4.x for further development
  • Additional commits viewable in compare view

Updates pandas to 3.0.5

Release notes

Sourced from pandas's releases.

pandas 3.0.5

We are pleased to announce the release of pandas 3.0.5. This is a patch release in the 3.0.x series and includes some regression fixes and bug fixes. We recommend that all users of the 3.0.x series upgrade to this version.

See the full whatsnew for a list of all the changes.

Pandas 3.0 supports Python 3.11 and higher. The release can be installed from PyPI:

python -m pip install --upgrade pandas==3.0.*

Or from conda-forge

conda install -c conda-forge pandas=3.0

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

Thanks to all the contributors who made this release possible.

Commits
  • e68db09 RLS: 3.0.5
  • 0697623 Backport PR #66428: DOC: update whatsnew for 3.0.5 (#66430)
  • 5d846d0 Backport PR #66090 on branch 3.0.x (BLD: exclude numpy 2.5.0 when building wh...
  • bef7a2b Backport PR #66169 on branch 3.0.x (CI: Fix pyarrow-nightly job (stale nightl...
  • 8188eb1 RLS: 3.0.4 (#66079)
  • bd35f15 [3.0.x] BUG: fix CoW issue in eval() (#66072)
  • 6195872 [backport 3.0.x] BUG: anchor whole alternation in Series.str.match for PyArro...
  • 70313be Backport PR #66051 on branch 3.0.x (BUG: fix regression in DataFrame setitem ...
  • 57ed3e2 [backport 3.0.x] Bump pypa/cibuildwheel from 3.4.1 to 4.1.0 (#65934) (#66026)
  • f9693fc [backport 3.0.x] BUG(pandas 3.0 regression): drop(index=...) doesn't accept N...
  • Additional commits viewable in compare view

Updates pillow to 12.3.0

Release notes

Sourced from pillow's releases.

12.3.0

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

Removals

Documentation

Dependencies

Testing

... (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
  • bb1d8e8 12.3.0 version bump
  • e63fc48 Add release notes for SBOM and performance improvements (#9747)
  • 13b701b Add release notes for #9679
  • 5564ca7 List methods
  • a0920fd Speed up ImageChops operations (#9738)
  • 07e9a6c Speed up Image.filter() (#9736)
  • a94578c Speed up Image.getchannel(), Image.merge(), Image.putalpha() and `Image...
  • 53e02c4 Speed up Image.fill(), Image.linear_gradient() and `Image.radial_gradient...
  • af03747 Speed up Image.resample() (#9739)
  • 5c9ca56 Speed up alpha_composite, matrix, negative, quantize (#9740)
  • Additional commits viewable in compare view

Updates pims to 0.7

Release notes

Sourced from pims's releases.

v0.7

This is a major release that includes compatibility with numpy 2.0, the end of libtiff support, and some bug fixes.

What's Changed

New Contributors

Full Changelog: soft-matter/pims@v0.6.1...v0.7

Commits
  • 16b3980 Merge pull request #458 from nkeim/v0.7-release-notes
  • dfd3254 DOC: Release notes for v0.7
  • 19f8f5f Merge pull request #450 from dstansby/patch-1
  • 4f9026b Merge pull request #457 from tacaswell/mnt/np2_compat
  • 24ae5fe MNT: ptp moved off of array and into top-level module
  • a4b9d11 MNT: use new signature of array_wrap
  • 1cfa034 CI: adjust python test matrix to NEP29 support window
  • 1f83181 MNT: vendor used private numpy function
  • 5bbe333 Merge pull request #441 from nkeim/drop-libtiff
  • e8392ca Update imageio link
  • Additional commits viewable in compare view

Updates pytz to 2026.3.post1

Commits
  • 661bca9 Bump version numbers to 2026.3.post1 for python2 fix
  • 1e31a16 Log python version running tests, force python2
  • b3ca7c3 Unix line endings
  • b55039a Replace non-ASCII character in comment to fix build with Python 2
  • 5420ee2 Replace non-ASCII character in comment
  • 2c139e8 Merge branch 'fix/localize-overflow-at-datetime-extremes' of https://github.c...
  • c843864 Run zdump tests quietly
  • 518500c Reduce noise when collecting zdump info dumps
  • 081f935 Merge branch 'kytta-fix-dst' into 2026c
  • 8c9d69b Merge branch 'master' into 2026c
  • Additional commits viewable in compare view

Updates reportlab to 5.0.1

Updates scikit-image to 0.26.0

Release notes

Sourced from scikit-image's releases.

v0.26.0

scikit-image 0.26.0

We're happy to announce the release of scikit-image 0.26.0!

New Features

  • Add new parameter max_step_cost to skimage.graph.MCP.find_costs which allows limiting the maximal stepping cost between points (#7625).
  • In skimage.transform, add the identity class constructor to all geometric transforms. For example, you can now use skimage.transform.PolynomialTransform(dimensionality=2) (#7754).
  • Add new property intensity_median to skimage.measure.regionprops (#7745).
  • binary_blobs now supports a mode parameter for the Gaussian filter, allowing periodic boundary conditions with mode="wrap" (#7909).

API Changes

  • In skimage.morphology, deprecate binary_erosion, binary_dilation, binary_opening, and binary_closing in favor of erosion, dilation, opening, and closing respectively. The binary versions weren't actually significantly faster than their non-binary counterparts and sometimes significantly slower. In the future, we might add optimizations internally to the remaining (general, non-binary) functions for when they're used with binary inputs (#7665).
  • Deprecate parameter max_cost in skimage.graph.MCP.find_costs which previously did nothing. Use the new parameter max_step_cost instead (#7625).
  • Deprecate parameter max_cumulative_cost in skimage.graph.MCP.find_costs which did nothing (#7625).
  • In skimage.morphology.remove_small_objects, deprecate the min_size parameter in favor of the new max_size parameter to make API and behavior clearer. This new threshold removes objects smaller than or equal to its value, while the previous parameter only removed smaller ones (#7739).
  • In skimage.morphology.remove_small_holes, deprecate the area_threshold parameter in favor of the new max_size parameter to make API and behavior clearer. This new threshold removes holes smaller ...

    Description has been truncated

Updates the requirements on [area-detector-handlers](https://github.com/danielballan/area-detector-handlers), [dask](https://github.com/dask/dask), [dill](https://github.com/uqfoundation/dill), [event-model](https://github.com/bluesky/event-model), [h5py](https://github.com/h5py/h5py), [historydict](https://github.com/Nikea/historydict), [ipython](https://github.com/ipython/ipython), [lmfit](https://github.com/lmfit/lmfit-py), [matplotlib](https://github.com/matplotlib/matplotlib), [numba](https://github.com/numba/numba), [numpy](https://github.com/numpy/numpy), [pandas](https://github.com/pandas-dev/pandas), [pillow](https://github.com/python-pillow/Pillow), [pims](https://github.com/soft-matter/pims), [pytz](https://github.com/stub42/pytz), [reportlab](https://www.reportlab.com/), [scikit-image](https://github.com/scikit-image/scikit-image), [scipy](https://github.com/scipy/scipy), [tifffile](https://github.com/cgohlke/tifffile), [threadpoolctl](https://github.com/joblib/threadpoolctl), [tqdm](https://github.com/tqdm/tqdm), [databroker](https://github.com/NSLS-II/databroker), pyolog, [build](https://github.com/pypa/build), [coverage](https://github.com/coveragepy/coveragepy), [hdf5plugin](https://github.com/silx-kit/hdf5plugin), [pre-commit](https://github.com/pre-commit/pre-commit), [pytest](https://github.com/pytest-dev/pytest), [ruff](https://github.com/astral-sh/ruff), [twine](https://github.com/pypa/twine), [numpydoc](https://github.com/numpy/numpydoc), [sphinx](https://github.com/sphinx-doc/sphinx), [sphinx-copybutton](https://github.com/executablebooks/sphinx-copybutton), [sphinx-rtd-theme](https://github.com/readthedocs/sphinx_rtd_theme), [setuptools](https://github.com/pypa/setuptools) and [setuptools-scm](https://github.com/pypa/setuptools-scm) to permit the latest version.

Updates `area-detector-handlers` to 0.0.10
- [Commits](https://github.com/danielballan/area-detector-handlers/commits)

Updates `dask` to 2026.8.0
- [Release notes](https://github.com/dask/dask/releases)
- [Changelog](https://github.com/dask/dask/blob/main/docs/release-procedure.md)
- [Commits](dask/dask@2023.1.0...2026.8.0)

Updates `dill` to 0.4.1
- [Release notes](https://github.com/uqfoundation/dill/releases)
- [Commits](uqfoundation/dill@dill-0.3.0...0.4.1)

Updates `event-model` to 1.24.0
- [Release notes](https://github.com/bluesky/event-model/releases)
- [Commits](bluesky/event-model@v1.19.0...v1.24.0)

Updates `h5py` to 3.16.0
- [Release notes](https://github.com/h5py/h5py/releases)
- [Changelog](https://github.com/h5py/h5py/blob/master/docs/release_guide.rst)
- [Commits](h5py/h5py@3.8.0...3.16.0)

Updates `historydict` to 1.2.6
- [Release notes](https://github.com/Nikea/historydict/releases)
- [Changelog](https://github.com/Nikea/historydict/blob/main/historydict.py)
- [Commits](Nikea/historydict@v1.2.0...v1.2.6)

Updates `ipython` to 9.17.0
- [Release notes](https://github.com/ipython/ipython/releases)
- [Commits](ipython/ipython@8.0.0...9.17.0)

Updates `lmfit` to 1.3.4
- [Release notes](https://github.com/lmfit/lmfit-py/releases)
- [Changelog](https://github.com/lmfit/lmfit-py/blob/master/doc/whatsnew.rst)
- [Commits](lmfit/lmfit-py@1.1.0...1.3.4)

Updates `matplotlib` to 3.11.1
- [Release notes](https://github.com/matplotlib/matplotlib/releases)
- [Commits](matplotlib/matplotlib@v3.6.0...v3.11.1)

Updates `numba` to 0.67.0
- [Release notes](https://github.com/numba/numba/releases)
- [Commits](numba/numba@0.61.0...0.67.0)

Updates `numpy` to 2.4.6
- [Release notes](https://github.com/numpy/numpy/releases)
- [Changelog](https://github.com/numpy/numpy/blob/main/doc/RELEASE_WALKTHROUGH.rst)
- [Commits](numpy/numpy@v1.23.0...v2.4.6)

Updates `pandas` to 3.0.5
- [Release notes](https://github.com/pandas-dev/pandas/releases)
- [Commits](pandas-dev/pandas@v1.5.0...v3.0.5)

Updates `pillow` to 12.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@9.0.0...12.3.0)

Updates `pims` to 0.7
- [Release notes](https://github.com/soft-matter/pims/releases)
- [Commits](soft-matter/pims@v0.6.0...v0.7)

Updates `pytz` to 2026.3.post1
- [Release notes](https://github.com/stub42/pytz/releases)
- [Commits](stub42/pytz@release_2022.1...release_2026.3.post1)

Updates `reportlab` to 5.0.1

Updates `scikit-image` to 0.26.0
- [Release notes](https://github.com/scikit-image/scikit-image/releases)
- [Changelog](https://github.com/scikit-image/scikit-image/blob/main/RELEASE.txt)
- [Commits](scikit-image/scikit-image@v0.20.0...v0.26.0)

Updates `scipy` to 1.17.1
- [Release notes](https://github.com/scipy/scipy/releases)
- [Commits](scipy/scipy@v1.9.0...v1.17.1)

Updates `tifffile` to 2026.3.3
- [Release notes](https://github.com/cgohlke/tifffile/releases)
- [Changelog](https://github.com/cgohlke/tifffile/blob/master/CHANGES.rst)
- [Commits](cgohlke/tifffile@v2022.8.3...v2026.3.3)

Updates `threadpoolctl` to 3.6.0
- [Release notes](https://github.com/joblib/threadpoolctl/releases)
- [Changelog](https://github.com/joblib/threadpoolctl/blob/master/CHANGES.md)
- [Commits](joblib/threadpoolctl@3.1.0...3.6.0)

Updates `tqdm` to 4.70.0
- [Release notes](https://github.com/tqdm/tqdm/releases)
- [Commits](tqdm/tqdm@v4.64.0...v4.70.0)

Updates `databroker` to 2.0.1
- [Release notes](https://github.com/NSLS-II/databroker/releases)
- [Commits](NSLS-II/dataportal@v1.2.0...v2.0.1)

Updates `pyolog` to 4.5.1

Updates `build` to 1.6.0
- [Release notes](https://github.com/pypa/build/releases)
- [Changelog](https://github.com/pypa/build/blob/main/CHANGELOG.rst)
- [Commits](pypa/build@1.2.0...1.6.0)

Updates `coverage` to 7.16.0
- [Release notes](https://github.com/coveragepy/coveragepy/releases)
- [Changelog](https://github.com/coveragepy/coveragepy/blob/main/CHANGES.rst)
- [Commits](coveragepy/coveragepy@7.0.0...7.16.0)

Updates `hdf5plugin` to 7.0.0
- [Release notes](https://github.com/silx-kit/hdf5plugin/releases)
- [Changelog](https://github.com/silx-kit/hdf5plugin/blob/main/CHANGELOG.rst)
- [Commits](silx-kit/hdf5plugin@v4.0.0...v7.0.0)

Updates `pre-commit` to 4.6.2
- [Release notes](https://github.com/pre-commit/pre-commit/releases)
- [Changelog](https://github.com/pre-commit/pre-commit/blob/main/CHANGELOG.md)
- [Commits](pre-commit/pre-commit@v4.0.0...v4.6.2)

Updates `pytest` to 9.1.1
- [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.1.1)

Updates `ruff` from 0.16.0 to 0.16.5
- [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.16.0...0.16.5)

Updates `twine` to 7.0.0
- [Release notes](https://github.com/pypa/twine/releases)
- [Changelog](https://github.com/pypa/twine/blob/main/docs/changelog.rst)
- [Commits](pypa/twine@6.0.0...7.0.0)

Updates `numpydoc` to 1.10.0
- [Release notes](https://github.com/numpy/numpydoc/releases)
- [Changelog](https://github.com/numpy/numpydoc/blob/main/RELEASE.rst)
- [Commits](numpy/numpydoc@v1.6.0...v1.10.0)

Updates `sphinx` to 9.0.4
- [Release notes](https://github.com/sphinx-doc/sphinx/releases)
- [Changelog](https://github.com/sphinx-doc/sphinx/blob/v9.0.4/CHANGES.rst)
- [Commits](sphinx-doc/sphinx@v7.0.0...v9.0.4)

Updates `sphinx-copybutton` to 0.5.2
- [Release notes](https://github.com/executablebooks/sphinx-copybutton/releases)
- [Changelog](https://github.com/executablebooks/sphinx-copybutton/blob/master/CHANGELOG.md)
- [Commits](executablebooks/sphinx-copybutton@v0.5.0...v0.5.2)

Updates `sphinx-rtd-theme` to 3.1.0
- [Changelog](https://github.com/readthedocs/sphinx_rtd_theme/blob/master/docs/changelog.rst)
- [Commits](readthedocs/sphinx_rtd_theme@2.0.0...3.1.0)

Updates `setuptools` to 84.0.0
- [Release notes](https://github.com/pypa/setuptools/releases)
- [Changelog](https://github.com/pypa/setuptools/blob/main/NEWS.rst)
- [Commits](pypa/setuptools@v77.0.0...v84.0.0)

Updates `setuptools-scm` to 10.2.1
- [Release notes](https://github.com/pypa/setuptools-scm/releases)
- [Changelog](https://github.com/pypa/setuptools-scm/blob/main/RELEASE_SYSTEM.md)
- [Commits](pypa/setuptools-scm@setuptools-scm-v10.0.0...setuptools-scm-v10.2.1)

---
updated-dependencies:
- dependency-name: area-detector-handlers
  dependency-version: 0.0.10
  dependency-type: direct:production
  dependency-group: python-dependencies
- dependency-name: dask
  dependency-version: 2026.8.0
  dependency-type: direct:production
  dependency-group: python-dependencies
- dependency-name: dill
  dependency-version: 0.4.1
  dependency-type: direct:production
  dependency-group: python-dependencies
- dependency-name: event-model
  dependency-version: 1.24.0
  dependency-type: direct:production
  dependency-group: python-dependencies
- dependency-name: h5py
  dependency-version: 3.16.0
  dependency-type: direct:production
  dependency-group: python-dependencies
- dependency-name: historydict
  dependency-version: 1.2.6
  dependency-type: direct:production
  dependency-group: python-dependencies
- dependency-name: ipython
  dependency-version: 9.17.0
  dependency-type: direct:production
  dependency-group: python-dependencies
- dependency-name: lmfit
  dependency-version: 1.3.4
  dependency-type: direct:production
  dependency-group: python-dependencies
- dependency-name: matplotlib
  dependency-version: 3.11.1
  dependency-type: direct:production
  dependency-group: python-dependencies
- dependency-name: numba
  dependency-version: 0.67.0
  dependency-type: direct:production
  dependency-group: python-dependencies
- dependency-name: numpy
  dependency-version: 2.4.6
  dependency-type: direct:production
  dependency-group: python-dependencies
- dependency-name: pandas
  dependency-version: 3.0.5
  dependency-type: direct:production
  dependency-group: python-dependencies
- dependency-name: pillow
  dependency-version: 12.3.0
  dependency-type: direct:production
  dependency-group: python-dependencies
- dependency-name: pims
  dependency-version: '0.7'
  dependency-type: direct:production
  dependency-group: python-dependencies
- dependency-name: pytz
  dependency-version: 2026.3.post1
  dependency-type: direct:production
  dependency-group: python-dependencies
- dependency-name: reportlab
  dependency-version: 5.0.1
  dependency-type: direct:production
  dependency-group: python-dependencies
- dependency-name: scikit-image
  dependency-version: 0.26.0
  dependency-type: direct:production
  dependency-group: python-dependencies
- dependency-name: scipy
  dependency-version: 1.17.1
  dependency-type: direct:production
  dependency-group: python-dependencies
- dependency-name: tifffile
  dependency-version: 2026.3.3
  dependency-type: direct:production
  dependency-group: python-dependencies
- dependency-name: threadpoolctl
  dependency-version: 3.6.0
  dependency-type: direct:production
  dependency-group: python-dependencies
- dependency-name: tqdm
  dependency-version: 4.70.0
  dependency-type: direct:production
  dependency-group: python-dependencies
- dependency-name: databroker
  dependency-version: 2.0.1
  dependency-type: direct:development
  dependency-group: python-dependencies
- dependency-name: pyolog
  dependency-version: 4.5.1
  dependency-type: direct:development
  dependency-group: python-dependencies
- dependency-name: build
  dependency-version: 1.6.0
  dependency-type: direct:development
  dependency-group: python-dependencies
- dependency-name: coverage
  dependency-version: 7.16.0
  dependency-type: direct:development
  dependency-group: python-dependencies
- dependency-name: hdf5plugin
  dependency-version: 7.0.0
  dependency-type: direct:development
  dependency-group: python-dependencies
- dependency-name: pre-commit
  dependency-version: 4.6.2
  dependency-type: direct:development
  dependency-group: python-dependencies
- dependency-name: pytest
  dependency-version: 9.1.1
  dependency-type: direct:development
  dependency-group: python-dependencies
- dependency-name: ruff
  dependency-version: 0.16.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: twine
  dependency-version: 7.0.0
  dependency-type: direct:development
  dependency-group: python-dependencies
- dependency-name: numpydoc
  dependency-version: 1.10.0
  dependency-type: direct:development
  dependency-group: python-dependencies
- dependency-name: sphinx
  dependency-version: 9.0.4
  dependency-type: direct:development
  dependency-group: python-dependencies
- dependency-name: sphinx-copybutton
  dependency-version: 0.5.2
  dependency-type: direct:development
  dependency-group: python-dependencies
- dependency-name: sphinx-rtd-theme
  dependency-version: 3.1.0
  dependency-type: direct:development
  dependency-group: python-dependencies
- dependency-name: setuptools
  dependency-version: 84.0.0
  dependency-type: direct:development
  dependency-group: python-dependencies
- dependency-name: setuptools-scm
  dependency-version: 10.2.1
  dependency-type: direct:development
  dependency-group: python-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 Sep 2, 2026
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.

0 participants