Skip to content

Bump the python-dependencies group across 1 directory with 4 updates - #286

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/uv/python-dependencies-523fdf0d11
Closed

dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/uv/python-dependencies-523fdf0d11

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 24, 2026

Copy link
Copy Markdown

Bumps the python-dependencies group with 4 updates in the / directory: ipykernel, rioxarray, scipy and jupyterlab.

Updates ipykernel from 6.4.2 to 7.3.0

Release notes

Sourced from ipykernel's releases.

v7.3.0

7.3.0

(Full Changelog)

New features added

Enhancements made

Bugs fixed

Maintenance and upkeep improvements

Other merged PRs

Contributors to this release

The following people contributed discussions, new ideas, code and documentation contributions, and review. See our definition of contributors.

(GitHub contributors page for this release)

... (truncated)

Changelog

Sourced from ipykernel's changelog.

7.3.0

(Full Changelog)

New features added

Enhancements made

Bugs fixed

Maintenance and upkeep improvements

Other merged PRs

Contributors to this release

The following people contributed discussions, new ideas, code and documentation contributions, and review. See our definition of contributors.

(GitHub contributors page for this release)

@​adityawasudeo (activity) | @​Carreau (activity) | @​erawn (activity) | @​goelakash (activity) | @​ianthomas23 (activity) | @​JohanMabille (activity) | @​krassowski (activity) | @​minrk (activity) | @​P4X-ng (activity) | @​pelson (activity) | @​rgbkrk (activity)

... (truncated)

Commits
  • 5dbd5ce Publish 7.3.0
  • 28e9cf8 chore: update pre-commit hooks (#1508)
  • 4e4f82c Support ZMQ Curve for transport encryption (#1515)
  • b64f597 Merge branch 'main' into curve-encryption
  • 6fc8b58 Fix broken IPython Reference URL in help_links (#1526)
  • cd6f460 Fix typing due to new jupyter_client version
  • b0678ba Update pyproject.toml to depend on jupyter_client 8.9.0 rather than branch
  • 2157ae7 Update tests to reflact rename to "auto"
  • 336971e build docs on latest python (#1525)
  • 7ecb521 Fix tests
  • Additional commits viewable in compare view

Updates rioxarray from 0.19.0 to 0.22.0

Release notes

Sourced from rioxarray's releases.

0.22.0

What's Changed

New Contributors

Other contributions

Full Changelog: corteva/rioxarray@0.21.0...0.22.0

0.21.0

What's Changed

New Contributors

Other contributions

Full Changelog: corteva/rioxarray@0.20.0...0.21.0

0.20.0 Release

What's Changed

New Contributors

Other contributions

Full Changelog: corteva/rioxarray@0.19.0...0.20.0

Changelog

Sourced from rioxarray's changelog.

0.22.0

  • ENH: Add read support for Zarr spatial and proj conventions (#900)
  • ENH: Add convention option to set_options() for future multi-convention support (#899)
  • REF: Extract CF convention logic to _convention/cf.py module (#899)
  • DEP: pin xarray 2026.2+ (#907)

0.21.0

  • ENH: RPCs: Load and write RPCs (#890)
  • ENH: Add rio.to_rasterio_dataset (#894)
  • ENH: Add float16 default nodata (#896)
  • BUG: Convert tuple chunks to dict in _prepare_dask to avoid DeprecationWarning (#879)
  • DEP: pin xarray due to GH-xarray-11000 (#881)
  • DOC: Fix grid_mapping location (#876)
  • MNT: Align conda Python version with pre-commit's (#891)
  • MNT: Use dependency_groups (#889, (#893)

0.20.0

  • DEP: Support Python 3.12-3.14 (#872)
  • DEP: numpy 2+ (#871)
  • ENH: Enable string resample parameter in rio.reproject and rio.reproject_match (#870)
Commits
  • 9b7da5b MNT: Version 0.22
  • 7022c15 Fix rasterio tables (#915)
  • 2e5cf73 DOC: Contributing instructions, BytesIO, switch from rasterio, GDAL config, &...
  • 74b9878 Bump actions/download-artifact from 7 to 8 (#913)
  • b6dae78 Bump actions/upload-artifact from 6 to 7 (#914)
  • 16789e8 ENH: Add read support for Zarr spatial and proj conventions (#905)
  • e5d607b DEP: pin xarray 2026.2+ (#907)
  • 6823bd8 CLN:convention: Remove unused docstring & kwargs (#904)
  • bda583f REF:convention: Reorganize convention modules & use rio accessor grid_mapping...
  • 5aa1a67 ENH: Add Convention option & extract CF logic to cf.py (#899)
  • Additional commits viewable in compare view

Updates scipy from 1.17.1 to 1.18.0

Release notes

Sourced from scipy's releases.

SciPy 1.18.0 Release Notes

SciPy 1.18.0 is the culmination of 6 months of hard work. It contains many new features, numerous bug-fixes, improved test coverage and better documentation. There have been a number of deprecations and API changes in this release, which are documented below. All users are encouraged to upgrade to this release, as there are a large number of bug-fixes and optimizations. Before upgrading, we recommend that users check that their own code does not use deprecated SciPy functionality (to do so, run your code with python -Wd and check for DeprecationWarning s). Our development attention will now shift to bug-fix releases on the 1.18.x branch, and on adding new features on the main branch.

This release requires Python 3.12-3.14 and NumPy 2.0.0 or greater.

Highlights of this release

  • SciPy now supports three different build modes for BLAS and LAPACK LP64/ILP64 support, and machinery is provided for downstream cython_lapack consumers to gracefully handle LP64/ILP64 backend builds. ILP64 support has been substantially improved across the SciPy library.
  • Remaining Fortran to C translations have been completed---an experimental Fortran-free build option is now available to developers for testing purposes. Developer feedback is welcome on Fortran-free builds.
  • scipy.signal.whittaker_henderson now provides access to Whittaker-Henderson smoothing of a discrete signal.
  • A large number of scipy.stats functions now support lazy arrays and JAX JIT. Array API support has been improved substantially in SciPy, with at least 21 functions gaining new support in this release. 16 scipy.stats functions have also gained support for MArray input.

New features

scipy.fft improvements

  • SciPy's internal FFT backend has switched from pocketfft to its successor package ducc0.fft, which features several incremental improvements. The most significant of those from SciPy's perspective is probably that storage requirements for internally cached plans have been significantly reduced for most long 1D transforms. Plans that require more storage than 1MB will no longer be cached; this mainly affects huge 1D transforms of prime and near-prime sizes.

scipy.interpolate improvements

... (truncated)

Commits
  • 54ef542 REL: 1.18.0 release commit
  • a45e463 Merge pull request #25395 from tylerjereddy/treddy_prep_1.18.0_final
  • ee2442e TYP, MAINT, TST: PR 25395 revisions
  • 3225154 DOC: PR 25395 revisions
  • 14c7bd7 TYP: Fix mypy errors with pytest==9.1.0 (#25410)
  • 71522e9 DOC: revise SciPy 1.18.0 release notes
  • 92f8482 MAINT: fix errors from pytest 9.1 (#25378)
  • 7b27bf4 TST, MAINT: modernize spatial tests for pytest 10 (#25376)
  • d05b640 Merge pull request #25347 from tylerjereddy/treddy_version_bump_1.18.0rc3
  • e60fe8b REL: set to 1.18.0rc3 unreleased
  • Additional commits viewable in compare view

Updates jupyterlab from 4.1.5 to 4.6.2

Release notes

Sourced from jupyterlab's releases.

v4.6.2

4.6.2

(Full Changelog)

Security patches

Bugs fixed

Maintenance and upkeep improvements

Documentation improvements

Other merged PRs

Contributors to this release

The following people contributed discussions, new ideas, code and documentation contributions, and review. See our definition of contributors.

(GitHub contributors page for this release)

@​afshin (activity) | @​GagandeepSingh20 (activity) | @​jtpio (activity) | @​krassowski (activity) | @​MUFFANUJ (activity)

... (truncated)

Commits
  • 150ba51 [ci skip] Publish 4.6.2
  • f1beab4 Backport of security patches to 4.6.x branch (#19185)
  • abdd427 Backport PR #19112 on branch 4.6.x (Fix resolving platform-specific shortcuts...
  • 98a615c Backport PR #19143 on branch 4.6.x (Clear stale Table of Contents error marke...
  • 1ec91a4 Backport PR #19179 on branch 4.6.x (Bump brace-expansion from 1.1.11 to 1.1.1...
  • 8d66183 Backport PR #19178 on branch 4.6.x (Bump axios from 1.16.0 to 1.18.1) (#19180)
  • 34ca550 Backport PR #19144 on branch 4.6.x (Fix stale document load after rename duri...
  • 172a7f6 Backport PR #19149 on branch 4.6.x (Fix notebook initialization stealing focu...
  • 34e1782 Backport PR #19126 on branch 4.6.x (Fix spurious 3s kernel restart delay) (#1...
  • 57e5afd Backport PR #19152 on branch 4.6.x (Stabilize Open in Terminal Galata test on...
  • Additional commits viewable in compare view

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python:uv Pull requests that update python:uv code labels Aug 24, 2026
@dependabot dependabot Bot changed the title Bump the python-dependencies group with 4 updates Bump the python-dependencies group across 1 directory with 4 updates Aug 24, 2026
@dependabot
dependabot Bot force-pushed the dependabot/uv/python-dependencies-523fdf0d11 branch 2 times, most recently from f2a72c6 to dbfdc77 Compare August 24, 2026 20:27
Bumps the python-dependencies group with 4 updates in the / directory: [ipykernel](https://github.com/ipython/ipykernel), [rioxarray](https://github.com/corteva/rioxarray), [scipy](https://github.com/scipy/scipy) and [jupyterlab](https://github.com/jupyterlab/jupyterlab).


Updates `ipykernel` from 6.4.2 to 7.3.0
- [Release notes](https://github.com/ipython/ipykernel/releases)
- [Changelog](https://github.com/ipython/ipykernel/blob/main/CHANGELOG.md)
- [Commits](ipython/ipykernel@v6.4.2...v7.3.0)

Updates `rioxarray` from 0.19.0 to 0.22.0
- [Release notes](https://github.com/corteva/rioxarray/releases)
- [Changelog](https://github.com/corteva/rioxarray/blob/master/docs/history.rst)
- [Commits](corteva/rioxarray@0.19.0...0.22.0)

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

Updates `jupyterlab` from 4.1.5 to 4.6.2
- [Release notes](https://github.com/jupyterlab/jupyterlab/releases)
- [Changelog](https://github.com/jupyterlab/jupyterlab/blob/main/RELEASE.md)
- [Commits](https://github.com/jupyterlab/jupyterlab/compare/@jupyterlab/lsp@4.1.5...@jupyterlab/lsp@4.6.2)

---
updated-dependencies:
- dependency-name: ipykernel
  dependency-version: 7.3.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: python-dependencies
- dependency-name: jupyterlab
  dependency-version: 4.6.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: rioxarray
  dependency-version: 0.22.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: scipy
  dependency-version: 1.18.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/uv/python-dependencies-523fdf0d11 branch from dbfdc77 to 108bba5 Compare August 25, 2026 06:14
@dependabot @github

dependabot Bot commented on behalf of github Aug 25, 2026

Copy link
Copy Markdown
Author

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot Bot closed this Aug 25, 2026
@dependabot
dependabot Bot deleted the dependabot/uv/python-dependencies-523fdf0d11 branch August 25, 2026 17:42
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:uv Pull requests that update python:uv code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants