Skip to content

Comments

Bump the patch group with 14 updates#2183

Merged
shachafl merged 1 commit intomasterfrom
dependabot/pip/patch-3b8b2d79c9
Feb 1, 2026
Merged

Bump the patch group with 14 updates#2183
shachafl merged 1 commit intomasterfrom
dependabot/pip/patch-3b8b2d79c9

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 1, 2026

Bumps the patch group with 14 updates:

Package From To
tqdm 4.67.1 4.67.2
boto3 1.42.24 1.42.39
botocore 1.42.24 1.42.39
pyparsing 3.3.1 3.3.2
debugpy 1.8.19 1.8.20
multidict 6.7.0 6.7.1
psutil 7.2.1 7.2.2
coverage 7.13.1 7.13.2
cryptography 46.0.3 46.0.4
nbencdec 0.0.10 0.0.11
soupsieve 2.8.1 2.8.3
jupyter-server-terminals 0.5.3 0.5.4
jupyterlab 4.5.1 4.5.3
notebook 7.5.1 7.5.3

Updates tqdm from 4.67.1 to 4.67.2

Release notes

Sourced from tqdm's releases.

tqdm v4.67.2 stable

  • support pandas>=3 (#1703 <- #1701, #1650, #1700)
  • fix format_interval for negative numbers (#1703)
  • misc linting
  • framework updates (#1704)
    • bump CI workflow & pre-commit dependencies
    • add pyupgrade
    • add py3.13 support
    • fix py3.7 tests
    • update setuptools-scm usage
    • support auto-dedented docstring when building docs in py3.13
  • tests: relax flaky benchmarks
Commits
  • 09a863b bump version, merge pull request #1704 from tqdm/devel
  • 33d24cd update pyproject syntax
  • 70b9124 add py3.13 support
  • a74d8f8 drop _dist_ver
  • 14d72e2 Merge pull request #1703 from wingding12/fix-pandas-3.0-and-negative-interval
  • a69dac8 fix dedented docstrings
  • a986d22 tests: fix pandas deprecation warnings
  • bb7aa4d tests: fix pandas deprecated applymap
  • 0647db1 misc tidy
  • 9bcd04b fix pandas>=3 & negative format_interval
  • Additional commits viewable in compare view

Updates boto3 from 1.42.24 to 1.42.39

Commits
  • fd93dbb Merge branch 'release-1.42.39'
  • 0a13ecc Bumping version to 1.42.39
  • e6b1f89 Add changelog entries from botocore
  • f76522e Merge branch 'release-1.42.38'
  • c7ef3d3 Merge branch 'release-1.42.38' into develop
  • 24e7223 Bumping version to 1.42.38
  • 0b29f3a Add changelog entries from botocore
  • 68bd84f Update wheel to 0.46.3 (#4713)
  • bae9979 Merge branch 'release-1.42.37'
  • be2fdc5 Merge branch 'release-1.42.37' into develop
  • Additional commits viewable in compare view

Updates botocore from 1.42.24 to 1.42.39

Commits
  • 26a688f Merge branch 'release-1.42.39'
  • f20e262 Bumping version to 1.42.39
  • d48f527 Update endpoints model
  • b96b52a Update to latest models
  • 0b51aea Merge branch 'release-1.42.38'
  • d30db46 Merge branch 'release-1.42.38' into develop
  • 37194c4 Bumping version to 1.42.38
  • 272ab9b Update to latest models
  • 51455c2 Merge branch 'release-1.42.37'
  • 9ff970f Merge branch 'release-1.42.37' into develop
  • Additional commits viewable in compare view

Updates pyparsing from 3.3.1 to 3.3.2

Changelog

Sourced from pyparsing's changelog.

Version 3.3.2 - January, 2026

  • Defined pyparsing-specific warning classes so that they can be selectively enabled or disabled without affecting warnings raised by other libraries in the same Python app:

    • PyparsingWarning - base warning for all pyparsing-specific warnings (inherits from UserWarning)
    • PyparsingDeprecationWarning - warning for using deprecated features (inherits from PyparsingWarning and DeprecationWarning)
    • PyparsingDiagnosticWarning - warning raised when pyparsing diagnostics are enabled and a diagnostic feature is used (inherits from PyparsingWarning)
  • Added as_datetime parse action to pyparsing.common - a more generalized version of the convert_to_datetime parse action (supports any expression that extracts date/time fields into "year", "month", "day", etc. results names), and validates that the parsed fields represent a valid date and time.

  • Added iso8601_date_validated and iso8601_datetime_validated expressions to pyparsing.common, which return a Python datetime.datetime

  • Various performance improvements in ParseResults class and core functions, with 10-20% performance overall.

  • Added regex_inverter web page (using PyScript) to demonstrate using the inv_regex.py example.

  • Expanded regex forms handled by the examples/inv_regex.py example:

    • named capturing groups (?P<name>)
    • partial repetition ({m,} and {,n})
    • negated character classes ([^...])
  • Added SPy (Simplified Python) parser to examples.

Commits
  • fa24016 Sync regex_inverter example from pyparsing
  • ea22046 Updates to regex_inverter example: handle cancel during long max_results inte...
  • 7df5c09 Sync regex_inverter example from pyparsing
  • e862afa Add Regular Expressions Quick Reference to regex_inverter/index.html
  • 6fdbd88 Sync regex_inverter example from pyparsing
  • 5b33045 Add note in the regex inverter that only the 7-bit ASCII characters are used ...
  • e403f2c Merge branch 'master' of https://github.com/pyparsing/pyparsing
  • e7b5f1c Fix repo sync action in sync-regex-inverter.yml
  • ea463fa Sync regex_inverter example from pyparsing
  • afcbdac Change repetition instructions to use {,4} instead of {,10}
  • Additional commits viewable in compare view

Updates debugpy from 1.8.19 to 1.8.20

Release notes

Sourced from debugpy's releases.

debugpy v1.8.20

Fixes for:

Enhancements:

Infrastructure work:

Thanks to @​rameshvarun, @​Xeonacid, and @​pdepetro for the commits

Commits

Updates multidict from 6.7.0 to 6.7.1

Release notes

Sourced from multidict's releases.

6.7.1

Bug fixes

  • Fixed slow memory leak caused by identity by adding Py_DECREF to identity value before leaving md_pop_one on success -- by :user:Vizonex.

    Related issues and pull requests on GitHub: #1284.


Changelog

Sourced from multidict's changelog.

6.7.1

(2026-01-25)

Bug fixes

  • Fixed slow memory leak caused by identity by adding Py_DECREF to identity value before leaving md_pop_one on success -- by :user:Vizonex.

    Related issues and pull requests on GitHub: :issue:1284.


Commits

Updates psutil from 7.2.1 to 7.2.2

Changelog

Sourced from psutil's changelog.

7.2.2

2026-01-28

Enhancements

  • 2705_: [Linux]: Process.wait()_ now uses pidfd_open() + poll() for waiting, resulting in no busy loop and faster response times. Requires Linux >= 5.3 and Python >= 3.9. Falls back to traditional polling if unavailable.
  • 2705_: [macOS], [BSD]: Process.wait()_ now uses kqueue() for waiting, resulting in no busy loop and faster response times.

Bug fixes

  • 2701_, [macOS]: fix compilation error on macOS < 10.7. (patch by Sergey Fedorov)
  • 2707_, [macOS]: fix potential memory leaks in error paths of Process.memory_full_info() and Process.threads().
  • 2708_, [macOS]: Process.cmdline()_ and Process.environ()_ may fail with ``OSError: [Errno 0] Undefined error`` (from ``sysctl(KERN_PROCARGS2)``). They now raise AccessDenied`_ instead.
Commits
  • 9eea97d Pre-release
  • 938ac64 Rm sphinxcontrib.googleanalytics; override layout.html
  • 9dcbb7e Add sphinxcontrib-googleanalytics to requirements.txt
  • 76eaf9a Try to add google analytics to doc
  • de1cafa Update doc mentioning Process.wait() internal details
  • bb30943 Refact can_use_pidfd_open() and can_use_kqueue()
  • a571717 #2708, macos / cmdline / environ; raise AD instead of OSError(0) (#2709)
  • 8b98c3e Pre-release
  • 700b7e6 [macOS] fix potential leaks in error paths (#2707)
  • 7cc7923 Windows / cmdline(): be more defensive in free()ing in case of error
  • Additional commits viewable in compare view

Updates coverage from 7.13.1 to 7.13.2

Changelog

Sourced from coverage's changelog.

Version 7.13.2 — 2026-01-25

  • Fix: when Python is installed via symlinks, for example with Homebrew, the standard library files could be incorrectly included in coverage reports. This is now fixed, closing issue 2115_.

  • Fix: if a data file is created with no read permissions, the combine step would fail completely. Now a warning is issued and the file is skipped. Closes issue 2117_.

.. _issue 2115: coveragepy/coveragepy#2115 .. _issue 2117: coveragepy/coveragepy#2117

.. _changes_7-13-1:

Commits
  • 513e971 docs: sample HTML for 7.13.2
  • 27a8230 docs: prep for 7.13.2
  • 27d8daa refactor: plural does more
  • a2f248c fix: stdlib might be through a symlink. #2115
  • bc52a22 debug: re-organize Matchers to show more of what they do
  • f338d81 debug: build is a tuple, don't show it on two lines
  • 92020e4 refactor(test): convert to parametrized
  • 6387d0a test: let (most) tests run with no network
  • 1d31e33 build: workflows sometimes need more than 10 min
  • 6294978 refactor: an error message is now uniform across versions
  • Additional commits viewable in compare view

Updates cryptography from 46.0.3 to 46.0.4

Changelog

Sourced from cryptography's changelog.

46.0.4 - 2026-01-27


* `Dropped support for win_arm64 wheels`_.
* Updated Windows, macOS, and Linux wheels to be compiled with OpenSSL 3.5.5.

.. _v46-0-3:

Commits

Updates nbencdec from 0.0.10 to 0.0.11

Updates soupsieve from 2.8.1 to 2.8.3

Release notes

Sourced from soupsieve's releases.

2.8.3

  • FIX: Fix inefficient attribute pattern.

2.8.2

  • FIX: Ensure custom selectors or namespace dictionaries reject non-string keys (@​mundanevision20).
  • FIX: Fix handling of :in-range and :out-of-range with end of year weeks (@​mundanevision20).
  • FIX: Fix a potential infinite loop in the pretty printing debug function (@​mundanevision20).
Commits

Updates jupyter-server-terminals from 0.5.3 to 0.5.4

Release notes

Sourced from jupyter-server-terminals's releases.

v0.5.4

0.5.4

(Full Changelog)

Bugs fixed

Documentation improvements

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)

@​krassowski (activity) | @​Zsailer (activity)

Changelog

Sourced from jupyter-server-terminals's changelog.

0.5.4

(Full Changelog)

Bugs fixed

Documentation improvements

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)

@​krassowski (activity) | @​Zsailer (activity)

Commits

Updates jupyterlab from 4.5.1 to 4.5.3

Release notes

Sourced from jupyterlab's releases.

v4.5.3

4.5.3

(Full Changelog)

Bugs fixed

Maintenance and upkeep improvements

  • Fix UI tests: config useSystemClipboardForCells=true for notebook toolbar test #18335 (@​brichet)
  • Remove generated docs files from the repo #18340 (@​jtpio)

Documentation improvements

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)

@​aaron-seq (activity) | @​brichet (activity) | @​IsabelParedes (activity) | @​jimangel (activity) | @​jtpio (activity) | @​krassowski (activity)

v4.5.2

4.5.2

(Full Changelog)

Bugs fixed

Maintenance and upkeep improvements

... (truncated)

Commits
  • 2677660 [ci skip] Publish 4.5.3
  • a3c7cc6 Backport PR #18344 on branch 4.5.x (Update CodeMirror to latest versions) (#1...
  • 6859ddd Backport PR #18352: Fix error in console when the debugger switch from a modu...
  • 1dff9c6 Backport PR #18362: Fix focus of replace buttons in the document search box (...
  • 7e49682 Backport PR #18363: Add installation instructions for JupyterLab with uv (#18...
  • 06736b5 Backport PR #18359: Fix deferred cell loading in defer and `contentVisibili...
  • 3688544 Fix "Open With > Editor" for .py files, update @lumino packages to `v2026...
  • ec399e0 Backport PR #18335: Fix UI tests: config useSystemClipboardForCells=true for ...
  • bb5cb96 Backport PR #18340: Remove generated docs files from the repo (#18341)
  • cdf2746 [ci skip] Publish 4.5.2
  • Additional commits viewable in compare view

Updates notebook from 7.5.1 to 7.5.3

Release notes

Sourced from notebook's releases.

v7.5.3

7.5.3

(Full Changelog)

Maintenance and upkeep improvements

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)

@​brichet (activity) | @​jtpio (activity)

v7.5.2

7.5.2

(Full Changelog)

Maintenance and upkeep improvements

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)

@​jtpio (activity)

Changelog

Sourced from notebook's changelog.

Changelog

A summary of changes in the Jupyter notebook. For more detailed information, see GitHub.

Use pip install notebook --upgrade or conda upgrade notebook to upgrade to the latest release.

We strongly recommend that you upgrade pip to version 9+ of pip before upgrading notebook.

Use pip install pip --upgrade to upgrade pip. Check pip version with pip --version.

7.5

Jupyter Notebook 7.5 is based on JupyterLab 4.5, and includes a number of new features, bug fixes, and enhancements for extension developers. This release is compatible with extensions supporting JupyterLab 4.0. Extension authors are recommended to consult the Extension Migration Guide which lists deprecations and changes to the public API.

Below are a few highlights for this new release. Most of the new features and improvements come from the update to JupyterLab 4.5, although they may not all be supported in Notebook 7.5.

For reference you may have a look at the JupyterLab 4.5 changelog to learn more.

Notebook improvements

The default windowing mode is now contentVisibility which improves cell rendering and alleviates previously reported issues. The minimap can be enabled for all windowing modes and all notebooks via the Settings menu, or by toggling the minimap per notebook with the View -> Show Minimap option.

Additional fixes improve layout containment and scrollbar behavior when working with long cells.

Debugger and console enhancements

The debugger's evaluate dialog has been replaced with an interactive console featuring syntax highlighting and code completion. The variables panel now preserves state when switching editors. Visual improvements include highlighted selected breakpoints, improved empty line handling, and a paused indicator. Debugger panels now reference cell execution counts.

Log Console users can configure default log levels and customize toolbars.

Terminal enhancements

The terminal now includes search functionality, with search highlights that adapt to theme changes.

Media and content support

Built-in audio and video viewers allow direct file playback within Jupyter Notebook.

... (truncated)

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the patch group with 14 updates:

| Package | From | To |
| --- | --- | --- |
| [tqdm](https://github.com/tqdm/tqdm) | `4.67.1` | `4.67.2` |
| [boto3](https://github.com/boto/boto3) | `1.42.24` | `1.42.39` |
| [botocore](https://github.com/boto/botocore) | `1.42.24` | `1.42.39` |
| [pyparsing](https://github.com/pyparsing/pyparsing) | `3.3.1` | `3.3.2` |
| [debugpy](https://github.com/microsoft/debugpy) | `1.8.19` | `1.8.20` |
| [multidict](https://github.com/aio-libs/multidict) | `6.7.0` | `6.7.1` |
| [psutil](https://github.com/giampaolo/psutil) | `7.2.1` | `7.2.2` |
| [coverage](https://github.com/coveragepy/coveragepy) | `7.13.1` | `7.13.2` |
| [cryptography](https://github.com/pyca/cryptography) | `46.0.3` | `46.0.4` |
| nbencdec | `0.0.10` | `0.0.11` |
| [soupsieve](https://github.com/facelessuser/soupsieve) | `2.8.1` | `2.8.3` |
| [jupyter-server-terminals](https://github.com/jupyter-server/jupyter_server_terminals) | `0.5.3` | `0.5.4` |
| [jupyterlab](https://github.com/jupyterlab/jupyterlab) | `4.5.1` | `4.5.3` |
| [notebook](https://github.com/jupyter/notebook) | `7.5.1` | `7.5.3` |


Updates `tqdm` from 4.67.1 to 4.67.2
- [Release notes](https://github.com/tqdm/tqdm/releases)
- [Commits](tqdm/tqdm@v4.67.1...v4.67.2)

Updates `boto3` from 1.42.24 to 1.42.39
- [Release notes](https://github.com/boto/boto3/releases)
- [Commits](boto/boto3@1.42.24...1.42.39)

Updates `botocore` from 1.42.24 to 1.42.39
- [Commits](boto/botocore@1.42.24...1.42.39)

Updates `pyparsing` from 3.3.1 to 3.3.2
- [Release notes](https://github.com/pyparsing/pyparsing/releases)
- [Changelog](https://github.com/pyparsing/pyparsing/blob/master/CHANGES)
- [Commits](pyparsing/pyparsing@3.3.1...3.3.2)

Updates `debugpy` from 1.8.19 to 1.8.20
- [Release notes](https://github.com/microsoft/debugpy/releases)
- [Commits](microsoft/debugpy@v1.8.19...v1.8.20)

Updates `multidict` from 6.7.0 to 6.7.1
- [Release notes](https://github.com/aio-libs/multidict/releases)
- [Changelog](https://github.com/aio-libs/multidict/blob/master/CHANGES.rst)
- [Commits](aio-libs/multidict@v6.7.0...v6.7.1)

Updates `psutil` from 7.2.1 to 7.2.2
- [Changelog](https://github.com/giampaolo/psutil/blob/master/HISTORY.rst)
- [Commits](giampaolo/psutil@release-7.2.1...release-7.2.2)

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

Updates `cryptography` from 46.0.3 to 46.0.4
- [Changelog](https://github.com/pyca/cryptography/blob/main/CHANGELOG.rst)
- [Commits](pyca/cryptography@46.0.3...46.0.4)

Updates `nbencdec` from 0.0.10 to 0.0.11

Updates `soupsieve` from 2.8.1 to 2.8.3
- [Release notes](https://github.com/facelessuser/soupsieve/releases)
- [Commits](facelessuser/soupsieve@2.8.1...2.8.3)

Updates `jupyter-server-terminals` from 0.5.3 to 0.5.4
- [Release notes](https://github.com/jupyter-server/jupyter_server_terminals/releases)
- [Changelog](https://github.com/jupyter-server/jupyter_server_terminals/blob/main/CHANGELOG.md)
- [Commits](jupyter-server/jupyter_server_terminals@v0.5.3...v0.5.4)

Updates `jupyterlab` from 4.5.1 to 4.5.3
- [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.5.1...@jupyterlab/lsp@4.5.3)

Updates `notebook` from 7.5.1 to 7.5.3
- [Release notes](https://github.com/jupyter/notebook/releases)
- [Changelog](https://github.com/jupyter/notebook/blob/main/CHANGELOG.md)
- [Commits](https://github.com/jupyter/notebook/compare/@jupyter-notebook/tree@7.5.1...@jupyter-notebook/tree@7.5.3)

---
updated-dependencies:
- dependency-name: tqdm
  dependency-version: 4.67.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: boto3
  dependency-version: 1.42.39
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: botocore
  dependency-version: 1.42.39
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: pyparsing
  dependency-version: 3.3.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: debugpy
  dependency-version: 1.8.20
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: multidict
  dependency-version: 6.7.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: psutil
  dependency-version: 7.2.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: coverage
  dependency-version: 7.13.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: cryptography
  dependency-version: 46.0.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: nbencdec
  dependency-version: 0.0.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: soupsieve
  dependency-version: 2.8.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: jupyter-server-terminals
  dependency-version: 0.5.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: jupyterlab
  dependency-version: 4.5.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: notebook
  dependency-version: 7.5.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
...

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 Feb 1, 2026
@shachafl shachafl self-requested a review February 1, 2026 19:48
@shachafl shachafl merged commit 7428ab1 into master Feb 1, 2026
41 checks passed
@dependabot dependabot bot deleted the dependabot/pip/patch-3b8b2d79c9 branch February 1, 2026 19:49
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