Skip to content

chore(poetry): bump the poetry-dependencies group with 18 updates#7

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/pip/poetry-dependencies-3128187926
Closed

chore(poetry): bump the poetry-dependencies group with 18 updates#7
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/pip/poetry-dependencies-3128187926

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Oct 9, 2025

Bumps the poetry-dependencies group with 18 updates:

Package From To
plotly 6.3.0 6.3.1
matplotlib 3.10.6 3.10.7
anyio 4.10.0 4.11.0
attrs 25.3.0 25.4.0
backrefs 5.9 6.0.1
beautifulsoup4 4.13.5 4.14.2
certifi 2025.8.3 2025.10.5
fonttools 4.60.0 4.60.1
ipython 9.5.0 9.6.0
jupyterlab 4.4.7 4.4.9
markupsafe 3.0.2 3.0.3
narwhals 2.5.0 2.7.0
notebook 7.4.5 7.4.7
platformdirs 4.4.0 4.5.0
python-json-logger 3.3.0 4.0.0
pyyaml 6.0.2 6.0.3
types-python-dateutil 2.9.0.20250822 2.9.0.20251008
websocket-client 1.8.0 1.9.0

Updates plotly from 6.3.0 to 6.3.1

Release notes

Sourced from plotly's releases.

v6.3.1

Updated

  • Update Plotly.js from version 3.1.0 to version 3.1.1. See the Plotly.js release notes for more information. [#5357]. Notable changes include:
    • Fix issue preventing Scattergl plots with text elements from rendering [plotly.js#7563]
  • Use native legends when converting from matplotlib [#5312], with thanks to @​robertoffmoura to the contribution!
  • Allow shared_yaxes to work with secondary axes [#5180], with thanks to @​gmjw for the contribution!

Fixed

  • Fix issue where width/height in plot layout were not respected during Kaleido image export [#5325]
  • Fix typo in default argument to _ternary_contour.py [#5315], with thanks to @​Lexachoc for the contribution!
  • Fix incorrect fig.show() behavior when ipython is installed [#5258]

Full Changelog: plotly/plotly.py@v6.3.0...v6.3.1

Changelog

Sourced from plotly's changelog.

[6.3.1] - 2025-10-02

Updated

  • Update Plotly.js from version 3.1.0 to version 3.1.1. See the Plotly.js release notes for more information. [#5357]. Notable changes include:
    • Fix issue preventing Scattergl plots with text elements from rendering [plotly.js#7563]
  • Use native legends when converting from matplotlib [#5312], with thanks to @​robertoffmoura to the contribution!
  • Allow shared_yaxes to work with secondary axes [#5180], with thanks to @​gmjw for the contribution!

Fixed

  • Fix issue where width/height in plot layout were not respected during Kaleido image export [#5325]
  • Fix typo in default argument to _ternary_contour.py [#5315], with thanks to @​Lexachoc for the contribution!
  • Fix incorrect fig.show() behavior when ipython is installed [#5258]
Commits
  • ecb00fe update uv lockfile
  • 4e96a43 version changes for v6.3.1
  • a0de8c9 Merge pull request #5361 from plotly/matplotlib-import-fix
  • 832b46c Merge branch 'main' into matplotlib-import-fix
  • b258862 Merge pull request #5180 from gmjw/secondary-y-shared
  • 2c5e2b6 fix matplotlib import
  • 610b7ee Merge branch 'main' into secondary-y-shared
  • fbbc9d6 Merge pull request #5322 from mgorny/plt-import
  • d2af541 Merge pull request #5258 from plotly/fix-default-renderer-when-ipython-installed
  • ead0c76 Merge branch 'main' into plt-import
  • Additional commits viewable in compare view

Updates matplotlib from 3.10.6 to 3.10.7

Release notes

Sourced from matplotlib's releases.

REL: v3.10.7

This is the latest bugfix release in the 3.10.x series.

The most important update in this release is that the minimum version of pyparsing has been updated to version 3.0.

Commits
  • 4aeb773 REL: v3.10.7
  • 080add3 Merge branch 'v3.10.6-doc' into v3.10.x
  • a604a8b Github Stats v3.10.7
  • f550261 Zenodo v3.10.6
  • 9a5e3e4 Merge pull request #30628 from meeseeksmachine/auto-backport-of-pr-30626-on-v...
  • eb8cb0c Backport PR #30626: MNT: Fix new F401 unused imports warnings
  • 8fadc71 Backport PR #29745: Use PEP8 style method and function names from (#30589)
  • 098876e Merge pull request #30614 from meeseeksmachine/auto-backport-of-pr-30612-on-v...
  • eb42d86 Backport PR #30612: MNT: update black pin
  • 4a9c187 Merge pull request #30572 from QuLogic/auto-backport-of-pr-30571-on-v3.10.x
  • Additional commits viewable in compare view

Updates anyio from 4.10.0 to 4.11.0

Release notes

Sourced from anyio's releases.

4.11.0

  • Added support for cancellation reasons (the reason parameter to CancelScope.cancel()) (#975)
  • Bumped the minimum version of Trio to v0.31.0
  • Added the ability to enter the event loop from foreign (non-worker) threads by passing the return value of anyio.lowlevel.current_token() to anyio.from_thread.run() and anyio.from_thread.run_sync() as the token keyword argument (#256)
  • Added pytest option (anyio_mode = "auto") to make the pytest plugin automatically handle all async tests (#971)
  • Added the anyio.Condition.wait_for() method for feature parity with asyncio (#974)
  • Changed the default type argument of anyio.abc.TaskStatus from Any to None (#964)
  • Fixed TCP listener behavior to guarantee the same ephemeral port is used for all socket listeners when local_port=0 (#857; PR by @​11kkw and @​agronholm)
  • Fixed inconsistency between Trio and asyncio where a TCP stream that previously raised a BrokenResourceError on send() would still raise BrokenResourceError after the stream was closed on asyncio, but ClosedResourceError on Trio. They now both raise a ClosedResourceError in this scenario. (#671)
Changelog

Sourced from anyio's changelog.

Version history

This library adheres to Semantic Versioning 2.0 <http://semver.org/>_.

UNRELEASED

  • Set None as the default type argument for anyio.abc.TaskStatus
  • Added support for uvloop=True on Windows via the winloop_ implementation ([#960](https://github.com/agronholm/anyio/issues/960) <https://github.com/agronholm/anyio/pull/960>_; PR by @​Vizonex)

.. _winloop: https://github.com/Vizonex/Winloop

4.11.0

  • Added support for cancellation reasons (the reason parameter to CancelScope.cancel()) ([#975](https://github.com/agronholm/anyio/issues/975) <https://github.com/agronholm/anyio/pull/975>_)
  • Bumped the minimum version of Trio to v0.31.0
  • Added the ability to enter the event loop from foreign (non-worker) threads by passing the return value of anyio.lowlevel.current_token() to anyio.from_thread.run() and anyio.from_thread.run_sync() as the token keyword argument ([#256](https://github.com/agronholm/anyio/issues/256) <https://github.com/agronholm/anyio/issues/256>_)
  • Added pytest option (anyio_mode = "auto") to make the pytest plugin automatically handle all async tests ([#971](https://github.com/agronholm/anyio/issues/971) <https://github.com/agronholm/anyio/pull/971>_)
  • Added the anyio.Condition.wait_for() method for feature parity with asyncio ([#974](https://github.com/agronholm/anyio/issues/974) <https://github.com/agronholm/anyio/pull/974>_)
  • Changed the default type argument of anyio.abc.TaskStatus from Any to None ([#964](https://github.com/agronholm/anyio/issues/964) <https://github.com/agronholm/anyio/pull/964>_)
  • Fixed TCP listener behavior to guarantee the same ephemeral port is used for all socket listeners when local_port=0 ([#857](https://github.com/agronholm/anyio/issues/857) <https://github.com/agronholm/anyio/issues/857>_; PR by @​11kkw and @​agronholm)
  • Fixed inconsistency between Trio and asyncio where a TCP stream that previously raised a BrokenResourceError on send() would still raise BrokenResourceError after the stream was closed on asyncio, but ClosedResourceError on Trio. They now both raise a ClosedResourceError in this scenario. ([#671](https://github.com/agronholm/anyio/issues/671) <https://github.com/agronholm/anyio/issues/671>_)

4.10.0

  • Added the feed_data() method to the BufferedByteReceiveStream class, allowing users to inject data directly into the buffer

  • Added various class methods to wrap existing sockets as listeners or socket streams:

    • SocketListener.from_socket()
    • SocketStream.from_socket()
    • UNIXSocketStream.from_socket()
    • UDPSocket.from_socket()

... (truncated)

Commits
  • 08737af Bumped up the version
  • 8bb9fe0 Fixed the inconsistent exception on sending to a closed TCP stream (#980)
  • 9637093 [pre-commit.ci] pre-commit autoupdate (#981)
  • f1bc6ee Fixed changelog entry formatting
  • 0b58964 Mentioned the sub-interpreter support in the README
  • 1ed112c Ensure same port is used for IPv4/IPv6 when creating TCP listener with local_...
  • aceeee0 Re-enabled coverage reporting on macOS
  • 6b890dc Reworded a changelog entry and added PR links to others
  • 944257d Updated pre-commit modules
  • 087975f Fixed a documentation style (#976)
  • Additional commits viewable in compare view

Updates attrs from 25.3.0 to 25.4.0

Commits

Updates backrefs from 5.9 to 6.0.1

Release notes

Sourced from backrefs's releases.

6.0.1

  • FIX: Fix a regression that created an ASCII binary property that would override the ASCII block property.

6.0

  • NEW: POSIX character classes will now always use POSIX compatibility rules instead of Unicode standard rules, if any are specified in the Unicode specification. The affected character classes are: [[:alnum:]], [[:digit:]], [[:xdigit:]], and [[:punct:]]. To explicitly use standard Unicode rules for these compatibility properties, use the Unicode property form instead: [\p{Alnum}], [\p{Digit}], [\p{Punct}], or [\p{XDigit}]. This has changed to ensure no confusion for users expecting compatible POSIX style character class properties.
  • FIX: Scoped ASCII/Unicode flags ((?a:pattern)/(?u:pattern)) should be respected for Unicode properties in bre and will ensure ASCII or Unicode range if used.
  • FIX: Fix issues related to detecting disabled scoped flags.
Commits

Updates beautifulsoup4 from 4.13.5 to 4.14.2

Updates certifi from 2025.8.3 to 2025.10.5

Commits
  • fb14ac4 2025.10.05 (#371)
  • 2c7c7ee Add Python 3.14 classifier in setup.py
  • 1a5cb7b Bump actions/setup-python from 5.6.0 to 6.0.0 (#367)
  • dea5960 Bump pypa/gh-action-pypi-publish from 1.12.4 to 1.13.0 (#366)
  • 83566b7 Bump actions/checkout from 4.2.2 to 5.0.0
  • ca2e121 Bump actions/download-artifact from 4.3.0 to 5.0.0
  • See full diff in compare view

Updates fonttools from 4.60.0 to 4.60.1

Release notes

Sourced from fonttools's releases.

4.60.1

  • [ufoLib] Reverted accidental method name change in UFOReader.getKerningGroupConversionRenameMaps that broke compatibility with downstream projects like defcon (#3948, #3947, robotools/defcon#478).
  • [ufoLib] Added test coverage for getKerningGroupConversionRenameMaps method (#3950).
  • [subset] Don't try to subset BASE table; pass it through by default instead (#3949).
  • [subset] Remove empty BaseRecord entries in MarkBasePos lookups (#3897, #3892).
  • [subset] Add pruning for MarkLigPos and MarkMarkPos lookups (#3946).
  • [subset] Remove duplicate features when subsetting (#3945).
  • [Docs] Added documentation for the visitor module (#3944).
Changelog

Sourced from fonttools's changelog.

4.60.1 (released 2025-09-29)

  • [ufoLib] Reverted accidental method name change in UFOReader.getKerningGroupConversionRenameMaps that broke compatibility with downstream projects like defcon (#3948, #3947, robotools/defcon#478).
  • [ufoLib] Added test coverage for getKerningGroupConversionRenameMaps method (#3950).
  • [subset] Don't try to subset BASE table; pass it through by default instead (#3949).
  • [subset] Remove empty BaseRecord entries in MarkBasePos lookups (#3897, #3892).
  • [subset] Add pruning for MarkLigPos and MarkMarkPos lookups (#3946).
  • [subset] Remove duplicate features when subsetting (#3945).
  • [Docs] Added documentation for the visitor module (#3944).
Commits
  • af032c1 Release 4.60.1
  • d47d261 Update NEWS.rst
  • c734ff2 Merge pull request #3950 from fonttools/test-ufolib-get-kerning-group-convers...
  • 45f4fd5 UFOConversion_test: add test for getKerningGroupConversionRenameMaps
  • 66dcf09 Merge pull request #3949 from daltonmaag/subsetbase
  • ae725ad Don't try and subset BASE either
  • 14d9316 Fix test
  • 0bb7ee7 Fix formatting
  • fab3086 Pass BASE table through subsetter by default
  • 5577c9b Merge pull request #3948 from fonttools/ufolib-revert-method-name-change
  • Additional commits viewable in compare view

Updates ipython from 9.5.0 to 9.6.0

Commits

Updates jupyterlab from 4.4.7 to 4.4.9

Release notes

Sourced from jupyterlab's releases.

v4.4.9

4.4.9

(Full Changelog)

Bugs fixed

Contributors to this release

(GitHub contributors page for this release)

@​jupyterlab-probot | @​krassowski | @​martinRenou | @​meeseeksmachine

v4.4.8

4.4.8

(Full Changelog)

Bugs fixed

Maintenance and upkeep improvements

Documentation improvements

Contributors to this release

(GitHub contributors page for this release)

@​brichet | @​github-actions | @​HaudinFlorence | @​jtpio | @​jupyterlab-probot | @​krassowski | @​martinRenou | @​meeseeksmachine | @​Meriem-BenIsmail | @​williamstein

Commits

Updates markupsafe from 3.0.2 to 3.0.3

Release notes

Sourced from markupsafe's releases.

3.0.3

This is the MarkupSafe 3.0.3 fix release, which fixes bugs but does not otherwise change behavior and should not result in breaking changes compared to the latest feature release.

PyPI: https://pypi.org/project/MarkupSafe/3.0.3/ Changes: https://markupsafe.palletsprojects.com/page/changes/#version-3-0-3 Milestone: https://github.com/pallets/markupsafe/milestone/15?closed=1

  • __version__ raises DeprecationWarning instead of UserWarning. #487
  • Adopt multi-phase initialization PEP 489 for the C extension. #494
  • Build Windows ARM64 wheels. #485
  • Build Python 3.14 wheels. #503
  • Build riscv64 wheels. #505
Changelog

Sourced from markupsafe's changelog.

Version 3.0.3

Released 2025-09-27

  • __version__ raises DeprecationWarning instead of UserWarning. :issue:487
  • Adopt multi-phase initialisation (:pep:489) for the C extension. :issue:494
  • Build Windows ARM64 wheels. :issue:485
  • Build Python 3.14 wheels. :issue:503
  • Build riscv64 wheels. :issue:505
Commits

Updates narwhals from 2.5.0 to 2.7.0

Release notes

Sourced from narwhals's releases.

Narwhals v2.7.0

Changes

✨ Enhancements

  • enh: Add nw.format (#3169)
  • feat: Adds {Expr,Series}.{first,last} (#2528)
  • feat: Support polars.UInt128 (#3138)
  • feat: Add prefix argument to generate_temporary_column_name (#3147)
  • feat: Add {nw,DataFrame}.from_dicts (#3148)

🐞 Bug fixes

  • fix: raise for rank followed by over with order_by for sql-like backends (#3178)
  • chore: Make Implementation.UNKNOWN._backend_version() safe (#3133)

📖 Documentation

  • docs(python) remove now unnecessary returns statements (#3170)

🛠️ Other improvements

  • chore: Add CompliantNamespace.is_native (#3130)
  • chore: Make Implementation.UNKNOWN._backend_version() safe (#3133)
  • chore(typing): Ignore another EagerDataFrame intermittent [False Negative] (#3142)
  • ci: fix darts job (#3172)
  • fix: add --upgrade flag to uv sync --dev (#3175)

Thank you to all our contributors for making this release possible! @​FBruzzesi, @​MarcoGorelli, @​akmalsoliev, @​dangotbanned, @​dependabot[bot], @​felixgwilliams and dependabot[bot]

Narwhals v2.6.0

Changes

✨ Enhancements

  • enh: support skew with over (#3161)
  • fix: Align division by zero behavior across all backends (#2761)
  • enh: support n_unique with over across all backends (#3159)
  • enh: support non-elementwise (but length-preserving) keys in group-by (#3157)

🐞 Bug fixes

  • fix: preserve nulls in cumulative functions (#3156)

🛠️ Other improvements

  • chore(typing): pyright ignore pl.UInt128 (#3144)
  • ci: ban click 8.3.0 (#3146)
  • chore: Support @requires.backend_version in namespaces (#3127)

... (truncated)

Commits
  • 6b019e3 release: Bump version to 2.7.0
  • a341154 fix: raise for rank followed by over with order_by for sql-like backends (#3178)
  • e2c4fd5 enh: Add nw.format (#3169)
  • f4787d3 docs(python) remove now unnecessary returns statements (#3170)
  • 053390d feat: Adds {Expr,Series}.{first,last} (#2528)
  • 022a3d9 chore: Add CompliantNamespace.is_native (#3130)
  • 24cf843 chore: Make Implementation.UNKNOWN._backend_version() safe (#3133)
  • f124786 feat: Support polars.UInt128 (#3138)
  • c1f8ad0 chore(typing): Ignore another EagerDataFrame intermittent [False Negative] ...
  • bf27649 fix: add --upgrade flag to uv sync --dev (#3175)
  • Additional commits viewable in compare view

Updates notebook from 7.4.5 to 7.4.7

Release notes

Sourced from notebook's releases.

v7.4.7

7.4.7

(Full Changelog)

Maintenance and upkeep improvements

Contributors to this release

(GitHub contributors page for this release)

@​jtpio

v7.4.6

7.4.6

(Full Changelog)

Enhancements made

Bugs fixed

Maintenance and upkeep improvements

Contributors to this release

(GitHub contributors page for this release)

@​github-actions | @​jtpio | @​meeseeksmachine | @​nkn2022

Changelog

Sourced from notebook's changelog.

7.4.7

(Full Changelog)

Maintenance and upkeep improvements

Contributors to this release

(GitHub contributors page for this release)

@​jtpio

7.4.6

(Full Changelog)

Enhancements made

Bugs fixed

Maintenance and upkeep improvements

Contributors to this release

(GitHub contributors page for this release)

@​github-actions | @​jtpio | @​meeseeksmachine | @​nkn2022

Commits

Updates platformdirs from 4.4.0 to 4.5.0

Release notes

Sourced from platformdirs's releases.

4.5.0

What's Changed

New Contributors

Full Changelog: tox-dev/platformdirs@4.4.0...4.5.0

Commits

Updates python-json-logger from 3.3.0 to 4.0.0

Release notes

Sourced from python-json-logger's releases.

4.0.0

Bumps the poetry-dependencies group with 18 updates:

| Package | From | To |
| --- | --- | --- |
| [plotly](https://github.com/plotly/plotly.py) | `6.3.0` | `6.3.1` |
| [matplotlib](https://github.com/matplotlib/matplotlib) | `3.10.6` | `3.10.7` |
| [anyio](https://github.com/agronholm/anyio) | `4.10.0` | `4.11.0` |
| [attrs](https://github.com/sponsors/hynek) | `25.3.0` | `25.4.0` |
| [backrefs](https://github.com/facelessuser/backrefs) | `5.9` | `6.0.1` |
| [beautifulsoup4](https://www.crummy.com/software/BeautifulSoup/bs4/) | `4.13.5` | `4.14.2` |
| [certifi](https://github.com/certifi/python-certifi) | `2025.8.3` | `2025.10.5` |
| [fonttools](https://github.com/fonttools/fonttools) | `4.60.0` | `4.60.1` |
| [ipython](https://github.com/ipython/ipython) | `9.5.0` | `9.6.0` |
| [jupyterlab](https://github.com/jupyterlab/jupyterlab) | `4.4.7` | `4.4.9` |
| [markupsafe](https://github.com/pallets/markupsafe) | `3.0.2` | `3.0.3` |
| [narwhals](https://github.com/narwhals-dev/narwhals) | `2.5.0` | `2.7.0` |
| [notebook](https://github.com/jupyter/notebook) | `7.4.5` | `7.4.7` |
| [platformdirs](https://github.com/tox-dev/platformdirs) | `4.4.0` | `4.5.0` |
| [python-json-logger](https://github.com/nhairs/python-json-logger) | `3.3.0` | `4.0.0` |
| [pyyaml](https://github.com/yaml/pyyaml) | `6.0.2` | `6.0.3` |
| [types-python-dateutil](https://github.com/typeshed-internal/stub_uploader) | `2.9.0.20250822` | `2.9.0.20251008` |
| [websocket-client](https://github.com/websocket-client/websocket-client) | `1.8.0` | `1.9.0` |


Updates `plotly` from 6.3.0 to 6.3.1
- [Release notes](https://github.com/plotly/plotly.py/releases)
- [Changelog](https://github.com/plotly/plotly.py/blob/main/CHANGELOG.md)
- [Commits](plotly/plotly.py@v6.3.0...v6.3.1)

Updates `matplotlib` from 3.10.6 to 3.10.7
- [Release notes](https://github.com/matplotlib/matplotlib/releases)
- [Commits](matplotlib/matplotlib@v3.10.6...v3.10.7)

Updates `anyio` from 4.10.0 to 4.11.0
- [Release notes](https://github.com/agronholm/anyio/releases)
- [Changelog](https://github.com/agronholm/anyio/blob/master/docs/versionhistory.rst)
- [Commits](agronholm/anyio@4.10.0...4.11.0)

Updates `attrs` from 25.3.0 to 25.4.0
- [Commits](https://github.com/sponsors/hynek/commits)

Updates `backrefs` from 5.9 to 6.0.1
- [Release notes](https://github.com/facelessuser/backrefs/releases)
- [Commits](facelessuser/backrefs@5.9...6.0.1)

Updates `beautifulsoup4` from 4.13.5 to 4.14.2

Updates `certifi` from 2025.8.3 to 2025.10.5
- [Commits](certifi/python-certifi@2025.08.03...2025.10.05)

Updates `fonttools` from 4.60.0 to 4.60.1
- [Release notes](https://github.com/fonttools/fonttools/releases)
- [Changelog](https://github.com/fonttools/fonttools/blob/main/NEWS.rst)
- [Commits](fonttools/fonttools@4.60.0...4.60.1)

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

Updates `jupyterlab` from 4.4.7 to 4.4.9
- [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.4.7...@jupyterlab/lsp@4.4.9)

Updates `markupsafe` from 3.0.2 to 3.0.3
- [Release notes](https://github.com/pallets/markupsafe/releases)
- [Changelog](https://github.com/pallets/markupsafe/blob/main/CHANGES.rst)
- [Commits](pallets/markupsafe@3.0.2...3.0.3)

Updates `narwhals` from 2.5.0 to 2.7.0
- [Release notes](https://github.com/narwhals-dev/narwhals/releases)
- [Commits](narwhals-dev/narwhals@v2.5.0...v2.7.0)

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

Updates `platformdirs` from 4.4.0 to 4.5.0
- [Release notes](https://github.com/tox-dev/platformdirs/releases)
- [Changelog](https://github.com/tox-dev/platformdirs/blob/main/CHANGES.rst)
- [Commits](tox-dev/platformdirs@4.4.0...4.5.0)

Updates `python-json-logger` from 3.3.0 to 4.0.0
- [Release notes](https://github.com/nhairs/python-json-logger/releases)
- [Changelog](https://github.com/nhairs/python-json-logger/blob/main/docs/changelog.md)
- [Commits](nhairs/python-json-logger@v3.3.0...v4.0.0)

Updates `pyyaml` from 6.0.2 to 6.0.3
- [Release notes](https://github.com/yaml/pyyaml/releases)
- [Changelog](https://github.com/yaml/pyyaml/blob/6.0.3/CHANGES)
- [Commits](yaml/pyyaml@6.0.2...6.0.3)

Updates `types-python-dateutil` from 2.9.0.20250822 to 2.9.0.20251008
- [Commits](https://github.com/typeshed-internal/stub_uploader/commits)

Updates `websocket-client` from 1.8.0 to 1.9.0
- [Release notes](https://github.com/websocket-client/websocket-client/releases)
- [Changelog](https://github.com/websocket-client/websocket-client/blob/master/ChangeLog)
- [Commits](websocket-client/websocket-client@v1.8.0...v1.9.0)

---
updated-dependencies:
- dependency-name: plotly
  dependency-version: 6.3.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: poetry-dependencies
- dependency-name: matplotlib
  dependency-version: 3.10.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: poetry-dependencies
- dependency-name: anyio
  dependency-version: 4.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: poetry-dependencies
- dependency-name: attrs
  dependency-version: 25.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: poetry-dependencies
- dependency-name: backrefs
  dependency-version: 6.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: poetry-dependencies
- dependency-name: beautifulsoup4
  dependency-version: 4.14.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: poetry-dependencies
- dependency-name: certifi
  dependency-version: 2025.10.5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: poetry-dependencies
- dependency-name: fonttools
  dependency-version: 4.60.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: poetry-dependencies
- dependency-name: ipython
  dependency-version: 9.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: poetry-dependencies
- dependency-name: jupyterlab
  dependency-version: 4.4.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: poetry-dependencies
- dependency-name: markupsafe
  dependency-version: 3.0.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: poetry-dependencies
- dependency-name: narwhals
  dependency-version: 2.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: poetry-dependencies
- dependency-name: notebook
  dependency-version: 7.4.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: poetry-dependencies
- dependency-name: platformdirs
  dependency-version: 4.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: poetry-dependencies
- dependency-name: python-json-logger
  dependency-version: 4.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: poetry-dependencies
- dependency-name: pyyaml
  dependency-version: 6.0.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: poetry-dependencies
- dependency-name: types-python-dateutil
  dependency-version: 2.9.0.20251008
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: poetry-dependencies
- dependency-name: websocket-client
  dependency-version: 1.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: poetry-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot bot commented on behalf of github Oct 9, 2025

Labels

The following labels could not be found: dependencies, poetry. Please create them before Dependabot can add them to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot bot commented on behalf of github Oct 11, 2025

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

@dependabot dependabot bot closed this Oct 11, 2025
@dependabot dependabot bot deleted the dependabot/pip/poetry-dependencies-3128187926 branch October 11, 2025 19:10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants