Skip to content

Bump the python-dependencies group with 24 updates #205

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 1, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 1, 2024

Bumps the python-dependencies group with 24 updates:

Package From To
jupyterlab 4.1.2 4.1.5
pytest 8.0.2 8.1.1
comm 0.2.1 0.2.2
httpcore 1.0.4 1.0.5
ipykernel 6.29.3 6.29.4
ipython 8.22.1 8.23.0
json5 0.9.17 0.9.24
jupyter-client 8.6.0 8.6.1
jupyter-core 5.7.1 5.7.2
jupyter-events 0.9.0 0.10.0
jupyter-lsp 2.2.3 2.2.4
jupyter-server 2.12.5 2.13.0
jupyter-server-terminals 0.5.2 0.5.3
jupyterlab-server 2.25.3 2.25.4
nbclient 0.9.0 0.10.0
nbconvert 7.16.1 7.16.3
nbformat 5.9.2 5.10.3
packaging 23.2 24.0
pycparser 2.21 2.22
python-dateutil 2.9.0 2.9.0.post0
referencing 0.33.0 0.34.0
terminado 0.18.0 0.18.1
traitlets 5.14.1 5.14.2
types-python-dateutil 2.8.19.20240106 2.9.0.20240316

Updates jupyterlab from 4.1.2 to 4.1.5

Release notes

Sourced from jupyterlab's releases.

v4.1.5

4.1.5

(Full Changelog)

Bugs fixed

Maintenance and upkeep improvements

Contributors to this release

(GitHub contributors page for this release)

@​andrii-i | @​brichet | @​jtpio | @​jupyterlab-probot | @​krassowski | @​linlol | @​meeseeksmachine | @​welcome

v4.1.4

4.1.4

(Full Changelog)

Bugs fixed

Contributors to this release

(GitHub contributors page for this release)

@​ericsnekbytes | @​github-actions | @​jtpio | @​jupyterlab-probot | @​krassowski | @​meeseeksmachine

v4.1.3

... (truncated)

Changelog

Sourced from jupyterlab's changelog.

4.1.5

(Full Changelog)

Bugs fixed

Maintenance and upkeep improvements

Contributors to this release

(GitHub contributors page for this release)

@​andrii-i | @​brichet | @​jtpio | @​jupyterlab-probot | @​krassowski | @​linlol | @​meeseeksmachine | @​welcome

4.1.4

(Full Changelog)

Bugs fixed

Contributors to this release

(GitHub contributors page for this release)

@​ericsnekbytes | @​github-actions | @​jtpio | @​jupyterlab-probot | @​krassowski | @​meeseeksmachine

4.1.3

(Full Changelog)

Bugs fixed

... (truncated)

Commits
  • 71e565e [ci skip] Publish 4.1.5
  • a5fa0aa Backport PR #15957: Fix Theme color is not applied to Toolbar Button (#15995)
  • 2b42e0f Backport PR #15834: Uses the browser window's selection as the default search...
  • 32eb7f9 Backport PR #15860: Show outline on the full item in file browser, only when ...
  • 67ae98c Backport PR #15970: Short-circuit selectItemByName() if already selected (#...
  • 9eeb816 Backport PR #15892: Fix browser-test.js (#15975)
  • 668dc57 Backport PR #15959: Ignore links to GitHub user and organisation profiles (#1...
  • 42946a0 Backport PR #15954: Avoid concurrency when computing the items in notebook to...
  • 411b66c Backport PR #15935: Fixes filter for Chinese, other non-ASCII filenames (#15950)
  • eac94d1 [ci skip] Publish 4.1.4
  • Additional commits viewable in compare view

Updates pytest from 8.0.2 to 8.1.1

Release notes

Sourced from pytest's releases.

8.1.1

pytest 8.1.1 (2024-03-08)

::: {.note} ::: {.title} Note :::

This release is not a usual bug fix release -- it contains features and improvements, being a follow up to 8.1.0, which has been yanked from PyPI. :::

Features

  • #11475: Added the new consider_namespace_packages{.interpreted-text role="confval"} configuration option, defaulting to False.

    If set to True, pytest will attempt to identify modules that are part of namespace packages when importing modules.

  • #11653: Added the new verbosity_test_cases{.interpreted-text role="confval"} configuration option for fine-grained control of test execution verbosity. See Fine-grained verbosity <pytest.fine_grained_verbosity>{.interpreted-text role="ref"} for more details.

Improvements

  • #10865: pytest.warns{.interpreted-text role="func"} now validates that warnings.warn{.interpreted-text role="func"} was called with a [str]{.title-ref} or a [Warning]{.title-ref}. Currently in Python it is possible to use other types, however this causes an exception when warnings.filterwarnings{.interpreted-text role="func"} is used to filter those warnings (see [CPython #103577](python/cpython#103577) for a discussion). While this can be considered a bug in CPython, we decided to put guards in pytest as the error message produced without this check in place is confusing.

  • #11311: When using --override-ini for paths in invocations without a configuration file defined, the current working directory is used as the relative directory.

    Previoulsy this would raise an AssertionError{.interpreted-text role="class"}.

  • #11475: --import-mode=importlib <import-mode-importlib>{.interpreted-text role="ref"} now tries to import modules using the standard import mechanism (but still without changing :pysys.path{.interpreted-text role="data"}), falling back to importing modules directly only if that fails.

    This means that installed packages will be imported under their canonical name if possible first, for example app.core.models, instead of having the module name always be derived from their path (for example .env310.lib.site_packages.app.core.models).

  • #11801: Added the iter_parents() <_pytest.nodes.Node.iter_parents>{.interpreted-text role="func"} helper method on nodes. It is similar to listchain <_pytest.nodes.Node.listchain>{.interpreted-text role="func"}, but goes from bottom to top, and returns an iterator, not a list.

  • #11850: Added support for sys.last_exc{.interpreted-text role="data"} for post-mortem debugging on Python>=3.12.

  • #11962: In case no other suitable candidates for configuration file are found, a pyproject.toml (even without a [tool.pytest.ini_options] table) will be considered as the configuration file and define the rootdir.

  • #11978: Add --log-file-mode option to the logging plugin, enabling appending to log-files. This option accepts either "w" or "a" and defaults to "w".

    Previously, the mode was hard-coded to be "w" which truncates the file before logging.

... (truncated)

Commits
  • 81653ee Adjust changelog manually for 8.1.1
  • e60b4b9 Prepare release version 8.1.1
  • 15fbe57 [8.1.x] Revert legacy path removals (#12093)
  • 86c3aab [8.1.x] Do not import duplicated modules with --importmode=importlib (#12077)
  • 5b82b0c [8.1.x] Yank version 8.1.0 (#12076)
  • 0a53681 Merge pull request #12054 from pytest-dev/release-8.1.0
  • b9a167f Prepare release version 8.1.0
  • 00043f7 Merge pull request #12038 from bluetech/fixtures-rm-arg2index
  • f4e1025 Merge pull request #12048 from bluetech/fixture-teardown-excgroup
  • 43492f5 Merge pull request #12051 from jakkdl/test_debugging_pythonbreakpoint
  • Additional commits viewable in compare view

Updates comm from 0.2.1 to 0.2.2

Release notes

Sourced from comm's releases.

v0.2.2

0.2.2

(Full Changelog)

Maintenance and upkeep improvements

Other merged PRs

Contributors to this release

(GitHub contributors page for this release)

@​blink1073 | @​pre-commit-ci

Changelog

Sourced from comm's changelog.

0.2.2

(Full Changelog)

Maintenance and upkeep improvements

Other merged PRs

Contributors to this release

(GitHub contributors page for this release)

@​blink1073 | @​pre-commit-ci

Commits

Updates httpcore from 1.0.4 to 1.0.5

Release notes

Sourced from httpcore's releases.

Version 1.0.5

1.0.5 (March 27th, 2024)

Changelog

Sourced from httpcore's changelog.

1.0.5 (March 27th, 2024)

  • Handle EndOfStream exception for anyio backend. (#899)
  • Allow trio 0.25.* series in package dependancies. (#903)
Commits

Updates ipykernel from 6.29.3 to 6.29.4

Release notes

Sourced from ipykernel's releases.

v6.29.4

6.29.4

(Full Changelog)

Bugs fixed

Maintenance and upkeep improvements

Contributors to this release

(GitHub contributors page for this release)

@​agronholm | @​blink1073 | @​davidbrochart | @​krassowski | @​minrk

Changelog

Sourced from ipykernel's changelog.

6.29.4

(Full Changelog)

Bugs fixed

Maintenance and upkeep improvements

Contributors to this release

(GitHub contributors page for this release)

@​agronholm | @​blink1073 | @​davidbrochart | @​krassowski | @​minrk

Commits

Updates ipython from 8.22.1 to 8.23.0

Commits

Updates json5 from 0.9.17 to 0.9.24

Commits
  • 0f1d8e8 Bump version to 0.9.24.
  • 4c02ffd Update GitHub workflow configurations
  • f9e177d Bump version to v0.9.23.
  • 0536fd8 Add pylint-3.1 code back in.
  • 46cebf6 Tweak two tests that somehow got dropped in the merges.
  • 327c094 Add additional tests and simplify dead code.
  • 673ca57 remove hypothesis tests
  • e93c816 Reformat the code with Ruff (./run format).
  • 00d73a3 Get things linting again.
  • a448682 one more thing in run
  • Additional commits viewable in compare view

Updates jupyter-client from 8.6.0 to 8.6.1

Release notes

Sourced from jupyter-client's releases.

v8.6.1

8.6.1

(Full Changelog)

Maintenance and upkeep improvements

Documentation improvements

Contributors to this release

(GitHub contributors page for this release)

@​blink1073 | @​dependabot | @​mlucool | @​pre-commit-ci | @​Zsailer

Changelog

Sourced from jupyter-client's changelog.

8.6.1

(Full Changelog)

Maintenance and upkeep improvements

Documentation improvements

Contributors to this release

(GitHub contributors page for this release)

@​blink1073 | @​dependabot | @​mlucool | @​pre-commit-ci | @​Zsailer

Commits

Updates jupyter-core from 5.7.1 to 5.7.2

Release notes

Sourced from jupyter-core's releases.

v5.7.2

5.7.2

(Full Changelog)

Maintenance and upkeep improvements

Contributors to this release

(GitHub contributors page for this release)

@​blink1073 | @​pre-commit-ci

Changelog

Sourced from jupyter-core's changelog.

5.7.2

(Full Changelog)

Maintenance and upkeep improvements

Contributors to this release

(GitHub contributors page for this release)

@​blink1073 | @​pre-commit-ci

Commits

Updates jupyter-events from 0.9.0 to 0.10.0

Release notes

Sourced from jupyter-events's releases.

v0.10.0

0.10.0

(Full Changelog)

Enhancements made

  • Enable adding listeners to event before the event is registered #97 (@​Zsailer)

Contributors to this release

(GitHub contributors page for this release)

@​Zsailer

v0.9.1

0.9.1

(Full Changelog)

Maintenance and upkeep improvements

Contributors to this release

(GitHub contributors page for this release)

@​blink1073 | @​pre-commit-ci

Changelog

Sourced from jupyter-events's changelog.

0.10.0

(Full Changelog)

Enhancements made

  • Enable adding listeners to event before the event is registered #97 (@​Zsailer)

Contributors to this release

(GitHub contributors page for this release)

@​Zsailer

0.9.1

(Full Changelog)

Maintenance and upkeep improvements

Contributors to this release

(GitHub contributors page for this release)

@​blink1073 | @​pre-commit-ci

Commits

Updates jupyter-lsp from 2.2.3 to 2.2.4

Release notes

Sourced from jupyter-lsp's releases.

jupyter-lsp 2.2.4

This is a hotfix release for jupyter-lsp (server extension) only.

To upgrade to this release:

  1. Make sure your JupyterLab version is 4.1.0 or newer and Python version is 3.8 or newer.
  2. Update the extension:
    pip install jupyterlab-lsp==5.1.0 jupyter-lsp==2.2.4 'jupyterlab>=4.1.0'
    # or, for conda:
    # > Please note that conda packages may take a day or two since release before becoming available!
    # conda install -c conda-forge jupyterlab-lsp=5.1.0 jupyter-lsp=2.2.4 'jupyterlab>=4.1.0'
  3. If installing this extension for the first time:
    • please read the full installation instructions as language servers of your choice need to be installed too, and additional configuration can make your experience smoother,
    • if you wish to use jedi-language-server or python-lsp-server, please make sure to upgrade IPython to 7.20 or newer.

Changelog

jupyter-lsp 2.2.4
  • bug fixes:
    • fix websocket handler incorrectly inheriting from APIHandler rather than JupyterHandler (#1069)
    • remove unused notebook config entry point (#1069)
    • support latest version of typescript-language-server (#1064)
Changelog

Sourced from jupyter-lsp's changelog.

jupyter-lsp 2.2.4

  • bug fixes:
    • fix websocket handler incorrectly inheriting from APIHandler rather than JupyterHandler (#1069)
    • remove unused notebook config entry point (#1069)
    • support latest version of typescript-language-server (#1064)

@jupyter-lsp/jupyterlab-lsp 5.1.0

Requires JupyterLab >=4.1.0,<5.0.0a0

  • new features:
    • populate table of contents with code symbols outline (experimental, file editor only)
  • bug fixes:
    • fix settings reconciliation for nested properties (#1051)
    • fix a regression introduced in v5.0.2 which meant that overrides for native kernel and context completion providers were never active (#1057)
    • reduces some warning...

      Description has been truncated

Bumps the python-dependencies group with 24 updates:

| Package | From | To |
| --- | --- | --- |
| [jupyterlab](https://github.com/jupyterlab/jupyterlab) | `4.1.2` | `4.1.5` |
| [pytest](https://github.com/pytest-dev/pytest) | `8.0.2` | `8.1.1` |
| [comm](https://github.com/ipython/comm) | `0.2.1` | `0.2.2` |
| [httpcore](https://github.com/encode/httpcore) | `1.0.4` | `1.0.5` |
| [ipykernel](https://github.com/ipython/ipykernel) | `6.29.3` | `6.29.4` |
| [ipython](https://github.com/ipython/ipython) | `8.22.1` | `8.23.0` |
| [json5](https://github.com/dpranke/pyjson5) | `0.9.17` | `0.9.24` |
| [jupyter-client](https://github.com/jupyter/jupyter_client) | `8.6.0` | `8.6.1` |
| [jupyter-core](https://github.com/jupyter/jupyter_core) | `5.7.1` | `5.7.2` |
| [jupyter-events](https://github.com/jupyter/jupyter_events) | `0.9.0` | `0.10.0` |
| [jupyter-lsp](https://github.com/jupyter-lsp/jupyterlab-lsp) | `2.2.3` | `2.2.4` |
| [jupyter-server](https://github.com/jupyter-server/jupyter_server) | `2.12.5` | `2.13.0` |
| [jupyter-server-terminals](https://github.com/jupyter-server/jupyter_server_terminals) | `0.5.2` | `0.5.3` |
| [jupyterlab-server](https://github.com/jupyterlab/jupyterlab_server) | `2.25.3` | `2.25.4` |
| [nbclient](https://github.com/jupyter/nbclient) | `0.9.0` | `0.10.0` |
| [nbconvert](https://github.com/jupyter/nbconvert) | `7.16.1` | `7.16.3` |
| [nbformat](https://github.com/jupyter/nbformat) | `5.9.2` | `5.10.3` |
| [packaging](https://github.com/pypa/packaging) | `23.2` | `24.0` |
| [pycparser](https://github.com/eliben/pycparser) | `2.21` | `2.22` |
| [python-dateutil](https://github.com/dateutil/dateutil) | `2.9.0` | `2.9.0.post0` |
| [referencing](https://github.com/python-jsonschema/referencing) | `0.33.0` | `0.34.0` |
| [terminado](https://github.com/jupyter/terminado) | `0.18.0` | `0.18.1` |
| [traitlets](https://github.com/ipython/traitlets) | `5.14.1` | `5.14.2` |
| [types-python-dateutil](https://github.com/python/typeshed) | `2.8.19.20240106` | `2.9.0.20240316` |


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

Updates `pytest` from 8.0.2 to 8.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.2...8.1.1)

Updates `comm` from 0.2.1 to 0.2.2
- [Release notes](https://github.com/ipython/comm/releases)
- [Changelog](https://github.com/ipython/comm/blob/main/CHANGELOG.md)
- [Commits](ipython/comm@v0.2.1...v0.2.2)

Updates `httpcore` from 1.0.4 to 1.0.5
- [Release notes](https://github.com/encode/httpcore/releases)
- [Changelog](https://github.com/encode/httpcore/blob/master/CHANGELOG.md)
- [Commits](encode/httpcore@1.0.4...1.0.5)

Updates `ipykernel` from 6.29.3 to 6.29.4
- [Release notes](https://github.com/ipython/ipykernel/releases)
- [Changelog](https://github.com/ipython/ipykernel/blob/v6.29.4/CHANGELOG.md)
- [Commits](ipython/ipykernel@v6.29.3...v6.29.4)

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

Updates `json5` from 0.9.17 to 0.9.24
- [Commits](dpranke/pyjson5@v0.9.17...v0.9.24)

Updates `jupyter-client` from 8.6.0 to 8.6.1
- [Release notes](https://github.com/jupyter/jupyter_client/releases)
- [Changelog](https://github.com/jupyter/jupyter_client/blob/main/CHANGELOG.md)
- [Commits](jupyter/jupyter_client@v8.6.0...v8.6.1)

Updates `jupyter-core` from 5.7.1 to 5.7.2
- [Release notes](https://github.com/jupyter/jupyter_core/releases)
- [Changelog](https://github.com/jupyter/jupyter_core/blob/main/CHANGELOG.md)
- [Commits](jupyter/jupyter_core@v5.7.1...v5.7.2)

Updates `jupyter-events` from 0.9.0 to 0.10.0
- [Release notes](https://github.com/jupyter/jupyter_events/releases)
- [Changelog](https://github.com/jupyter/jupyter_events/blob/main/CHANGELOG.md)
- [Commits](jupyter/jupyter_events@v0.9.0...v0.10.0)

Updates `jupyter-lsp` from 2.2.3 to 2.2.4
- [Release notes](https://github.com/jupyter-lsp/jupyterlab-lsp/releases)
- [Changelog](https://github.com/jupyter-lsp/jupyterlab-lsp/blob/main/CHANGELOG.md)
- [Commits](https://github.com/jupyter-lsp/jupyterlab-lsp/commits/jupyter-lsp-2.2.4)

Updates `jupyter-server` from 2.12.5 to 2.13.0
- [Release notes](https://github.com/jupyter-server/jupyter_server/releases)
- [Changelog](https://github.com/jupyter-server/jupyter_server/blob/main/CHANGELOG.md)
- [Commits](jupyter-server/jupyter_server@v2.12.5...v2.13.0)

Updates `jupyter-server-terminals` from 0.5.2 to 0.5.3
- [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.2...v0.5.3)

Updates `jupyterlab-server` from 2.25.3 to 2.25.4
- [Release notes](https://github.com/jupyterlab/jupyterlab_server/releases)
- [Changelog](https://github.com/jupyterlab/jupyterlab_server/blob/main/CHANGELOG.md)
- [Commits](jupyterlab/jupyterlab_server@v2.25.3...v2.25.4)

Updates `nbclient` from 0.9.0 to 0.10.0
- [Release notes](https://github.com/jupyter/nbclient/releases)
- [Changelog](https://github.com/jupyter/nbclient/blob/main/CHANGELOG.md)
- [Commits](jupyter/nbclient@v0.9.0...v0.10.0)

Updates `nbconvert` from 7.16.1 to 7.16.3
- [Release notes](https://github.com/jupyter/nbconvert/releases)
- [Changelog](https://github.com/jupyter/nbconvert/blob/main/CHANGELOG.md)
- [Commits](jupyter/nbconvert@v7.16.1...v7.16.3)

Updates `nbformat` from 5.9.2 to 5.10.3
- [Release notes](https://github.com/jupyter/nbformat/releases)
- [Changelog](https://github.com/jupyter/nbformat/blob/main/CHANGELOG.md)
- [Commits](jupyter/nbformat@v5.9.2...v5.10.3)

Updates `packaging` from 23.2 to 24.0
- [Release notes](https://github.com/pypa/packaging/releases)
- [Changelog](https://github.com/pypa/packaging/blob/main/CHANGELOG.rst)
- [Commits](pypa/packaging@23.2...24.0)

Updates `pycparser` from 2.21 to 2.22
- [Release notes](https://github.com/eliben/pycparser/releases)
- [Changelog](https://github.com/eliben/pycparser/blob/main/CHANGES)
- [Commits](eliben/pycparser@release_v2.21...release_v2.22)

Updates `python-dateutil` from 2.9.0 to 2.9.0.post0
- [Release notes](https://github.com/dateutil/dateutil/releases)
- [Changelog](https://github.com/dateutil/dateutil/blob/master/NEWS)
- [Commits](dateutil/dateutil@2.9.0...2.9.0.post0)

Updates `referencing` from 0.33.0 to 0.34.0
- [Release notes](https://github.com/python-jsonschema/referencing/releases)
- [Changelog](https://github.com/python-jsonschema/referencing/blob/main/docs/changes.rst)
- [Commits](python-jsonschema/referencing@v0.33.0...v0.34.0)

Updates `terminado` from 0.18.0 to 0.18.1
- [Release notes](https://github.com/jupyter/terminado/releases)
- [Changelog](https://github.com/jupyter/terminado/blob/main/CHANGELOG.md)
- [Commits](jupyter/terminado@v0.18.0...v0.18.1)

Updates `traitlets` from 5.14.1 to 5.14.2
- [Release notes](https://github.com/ipython/traitlets/releases)
- [Changelog](https://github.com/ipython/traitlets/blob/main/CHANGELOG.md)
- [Commits](ipython/traitlets@v5.14.1...v5.14.2)

Updates `types-python-dateutil` from 2.8.19.20240106 to 2.9.0.20240316
- [Commits](https://github.com/python/typeshed/commits)

---
updated-dependencies:
- dependency-name: jupyterlab
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: pytest
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: comm
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: httpcore
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: ipykernel
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: ipython
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: json5
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: jupyter-client
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: jupyter-core
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: jupyter-events
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: jupyter-lsp
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: jupyter-server
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: jupyter-server-terminals
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: jupyterlab-server
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: nbclient
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: nbconvert
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: nbformat
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: packaging
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: python-dependencies
- dependency-name: pycparser
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: python-dateutil
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: referencing
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: terminado
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: traitlets
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: types-python-dateutil
  dependency-type: indirect
  update-type: version-update:semver-minor
  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 Apr 1, 2024
@EliahKagan EliahKagan merged commit 4171fe0 into main Apr 1, 2024
@EliahKagan EliahKagan deleted the dependabot/pip/python-dependencies-ba362b4ef4 branch April 1, 2024 14:24
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