Skip to content
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

Bump the pip-dependencies group with 16 updates #388

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 1, 2023

Bumps the pip-dependencies group with 16 updates:

Package From To
multimethod 1.9.1 1.10
kerchunk 0.1.2 0.2.2
mypy 1.4.1 1.7.1
jupyterlab 4.0.3 4.0.9
pre-commit 3.3.3 3.5.0
pytest 7.4.0 7.4.3
mkdocs 1.5.1 1.5.3
mkdocstrings 0.22.0 0.24.0
pymdown-extensions 10.1 10.5
pygments 2.15.1 2.17.2
responses 0.23.3 0.24.1
types-requests 2.31.0.2 2.31.0.6
types-setuptools 68.0.0.3 69.0.0.0
widgetsnbextension 4.0.8 4.0.9
matplotlib 3.7.2 3.7.4
bump-my-version 0.10.0 0.12.0

Updates multimethod from 1.9.1 to 1.10

Changelog

Sourced from multimethod's changelog.

1.10 - 2023-09-21

Changed

  • Python >=3.8 required

Added

  • Type[...] dispatches on class arguments
  • | syntax for union types
  • overload supports generics and forward references
  • Dispatch on optional parameters
Commits
  • c37bc07 Release 1.10.
  • 41e3eed Callable type checker and metaclass.
  • 2dd2615 Literals supported as a subclass.
  • 2cb5abf Dispatch on optional parameters.
  • c36c5d8 Bump actions/checkout from 3 to 4
  • 70574b4 Added changelog.
  • a3b013d Fix documentation for class and static methods.
  • ae405ec Support forward references in overload.
  • 9cfdccd Support generic annotations in overload.
  • d3560af Switched from flake8 to ruff.
  • Additional commits viewable in compare view

Updates kerchunk from 0.1.2 to 0.2.2

Commits
  • cdd106b Merge pull request #383 from martindurant/shuffle_back
  • 2e14125 Do not handle shuffle twice
  • 650c211 classifiers
  • 4f5b9fb Merge pull request #379 from maxrjones/use-pyproject-toml
  • d97b75d Update version scheme
  • 57f82eb Merge branch 'main' into use-pyproject-toml
  • 6338448 Update packaging
  • ff2d639 Merge pull request #372 from norlandrhagen/kerchunk_xarray_engine
  • fa0c456 Add .json.zstd
  • d644701 replaced reference mapper with single line
  • Additional commits viewable in compare view

Updates mypy from 1.4.1 to 1.7.1

Changelog

Sourced from mypy's changelog.

Mypy Release Notes

Next release

Stubgen will now include __all__ in its output if it is in the input file (PR 16356).

Mypy 1.7

We’ve just uploaded mypy 1.7 to the Python Package Index (PyPI). Mypy is a static type checker for Python. This release includes new features, performance improvements and bug fixes. You can install it as follows:

python3 -m pip install -U mypy

You can read the full documentation for this release on Read the Docs.

Using TypedDict for **kwargs Typing

Mypy now has support for using Unpack[...] with a TypedDict type to annotate **kwargs arguments enabled by default. Example:

# Or 'from typing_extensions import ...'
from typing import TypedDict, Unpack
class Person(TypedDict):
name: str
age: int
def foo(**kwargs: Unpack[Person]) -> None:
...
foo(name="x", age=1)  # Ok
foo(name=1)  # Error

The definition of foo above is equivalent to the one below, with keyword-only arguments name and age:

def foo(*, name: str, age: int) -> None:
    ...

Refer to PEP 692 for more information. Note that unlike in the current version of the PEP, mypy always treats signatures with Unpack[SomeTypedDict] as equivalent to their expanded forms with explicit keyword arguments, and there aren't special type checking rules for TypedDict arguments.

This was contributed by Ivan Levkivskyi back in 2022 (PR 13471).

TypeVarTuple Support Enabled (Experimental)

Mypy now has support for variadic generics (TypeVarTuple) enabled by default, as an experimental feature. Refer to PEP 646 for the details.

TypeVarTuple was implemented by Jared Hance and Ivan Levkivskyi over several mypy releases, with help from Jukka Lehtosalo.

... (truncated)

Commits

Updates jupyterlab from 4.0.3 to 4.0.9

Release notes

Sourced from jupyterlab's releases.

v4.0.9

4.0.9

(Full Changelog)

Bugs fixed

Maintenance and upkeep improvements

Contributors to this release

(GitHub contributors page for this release)

@​blink1073 | @​brichet | @​dharmaquark | @​fcollonval | @​gabalafou | @​github-actions | @​jtpio | @​jupyterlab-probot | @​krassowski | @​lumberbot-app | @​meeseeksmachine | @​skyetim | @​tonyfast | @​welcome

v4.0.8

4.0.8

(Full Changelog)

Enhancements made

Bugs fixed

... (truncated)

Changelog

Sourced from jupyterlab's changelog.

4.0.9

(Full Changelog)

Bugs fixed

Maintenance and upkeep improvements

Contributors to this release

(GitHub contributors page for this release)

@​blink1073 | @​brichet | @​dharmaquark | @​fcollonval | @​gabalafou | @​github-actions | @​jtpio | @​jupyterlab-probot | @​krassowski | @​lumberbot-app | @​meeseeksmachine | @​skyetim | @​tonyfast | @​welcome

4.0.8

(Full Changelog)

Enhancements made

Bugs fixed

Maintenance and upkeep improvements

... (truncated)

Commits

Updates pre-commit from 3.3.3 to 3.5.0

Release notes

Sourced from pre-commit's releases.

pre-commit v3.5.0

Features

Fixes

Migrating

pre-commit v3.4.0

Features

Fixes

Changelog

Sourced from pre-commit's changelog.

3.5.0 - 2023-10-13

Features

Fixes

Migrating

3.4.0 - 2023-09-02

Features

Fixes

Commits
  • 61cc55a v3.5.0
  • c9945b9 Merge pull request #3029 from adamchainz/improve_duration_timing
  • d988767 Improve hook duration timing
  • 0d8b245 Merge pull request #3023 from pre-commit/pre-commit-ci-update-config
  • 155c521 [pre-commit.ci] pre-commit autoupdate
  • 676e51a Merge pull request #3024 from pre-commit/pick-shebang-path-without-spaces
  • 997ea0a use sys.executable instead of echo.exe in parse_shebang
  • 19aa121 Merge pull request #3016 from pre-commit/pre-commit-ci-update-config
  • a4ab977 [pre-commit.ci] pre-commit autoupdate
  • 3f3760b Merge pull request #3011 from hack3ric/bump-node-and-go-version
  • Additional commits viewable in compare view

Updates pytest from 7.4.0 to 7.4.3

Release notes

Sourced from pytest's releases.

pytest 7.4.3 (2023-10-24)

Bug Fixes

  • #10447: Markers are now considered in the reverse mro order to ensure base class markers are considered first -- this resolves a regression.

  • #11239: Fixed := in asserts impacting unrelated test cases.

  • #11439: Handled an edge case where :data:sys.stderr might already be closed when :ref:faulthandler is tearing down.

pytest 7.4.2 (2023-09-07)

Bug Fixes

  • #11237: Fix doctest collection of functools.cached_property objects.

  • #11306: Fixed bug using --importmode=importlib which would cause package __init__.py files to be imported more than once in some cases.

  • #11367: Fixed bug where user_properties where not being saved in the JUnit XML file if a fixture failed during teardown.

  • #11394: Fixed crash when parsing long command line arguments that might be interpreted as files.

Improved Documentation

  • #11391: Improved disclaimer on pytest plugin reference page to better indicate this is an automated, non-curated listing.

pytest 7.4.1 (2023-09-02)

Bug Fixes

  • #10337: Fixed bug where fake intermediate modules generated by --import-mode=importlib would not include the child modules as attributes of the parent modules.

  • #10702: Fixed error assertion handling in pytest.approx when None is an expected or received value when comparing dictionaries.

  • #10811: Fixed issue when using --import-mode=importlib together with --doctest-modules that caused modules to be imported more than once, causing problems with modules that have import side effects.

Commits
  • 2390610 Tweak changelog.rst
  • a0714aa Prepare release version 7.4.3
  • 44ad1c9 [7.4.x] fix #10447 - consider marks in reverse mro order to give base classes...
  • 5dc7725 [7.4.x] Ensure logging tests always cleanup after themselves (#11541)
  • a517827 [7.4.x] Configure ReadTheDocs to fail on warnings (#11540)
  • 21fe071 [7.4.x] fix for ValueError raised in faulthandler teardown code (#11455)
  • f8bb857 Force terminal width when running tests (#11425) (#11432)
  • 1944dc0 [7.4.x] Fix --import-mode=importlib when root contains __init__.py file (#1...
  • 946634c Merge pull request #11419 from nicoddemus/backport-11414-to-7.4.x
  • d849a3e [7.4.x] fix: closes #11343's [attr-defined] type errors (#11421)
  • Additional commits viewable in compare view

Updates mkdocs from 1.5.1 to 1.5.3

Release notes

Sourced from mkdocs's releases.

1.5.3

  • Fix mkdocs serve sometimes locking up all browser tabs when navigating quickly (#3390)

  • Add many new supported languages for "search" plugin - update lunr-languages to 1.12.0 (#3334)

  • Bugfix (regression in 1.5.0): In "readthedocs" theme the styling of "breadcrumb navigation" was broken for nested pages (#3383)

  • Built-in themes now also support Chinese (Traditional, Taiwan) language (#3370)

  • Plugins can now set File.page to their own subclass of Page. There is also now a warning if File.page is set to anything other than a strict subclass of Page. (#3367, #3381)

    Note that just instantiating a Page sets the file automatically, so care needs to be taken not to create an unneeded Page.

Other small improvements; see commit log.

1.5.2

  • Bugfix (regression in 1.5.0): Restore functionality of --no-livereload. (#3320)

  • Bugfix (regression in 1.5.0): The new page title detection would sometimes be unable to drop anchorlinks - fix that. (#3325)

  • Partly bring back pre-1.5 API: extra_javascript items will once again be mostly strings, and only sometimes ExtraStringValue (when the extra script functionality is used).

    Plugins should be free to append strings to config.extra_javascript, but when reading the values, they must still make sure to read it as str(value) in case it is an ExtraScriptValue item. For querying the attributes such as .type you need to check isinstance first. Static type checking will guide you in that. (#3324)

See commit log.

Commits
  • 00b648f Release 1.5.3 (#3392)
  • 63b5045 Change PyPI deploy to rely on "trusted publishers" (#3400)
  • abb133f Fix new lint warnings
  • 8c79426 Abort livereload request before navigation (#3390)
  • f94ab3f Add zh_TW locale for built-in themes (#3370)
  • 0d6fc28 Merge pull request #3383 from mkdocs/breadcrumbs
  • 4bd896c Fix linkified breadcrumb items in readthedocs theme
  • c070dd0 Fix broken styling of breadcrumbs in readthedocs theme
  • 347c3a9 Apply automatic fixes from ruff, show diff in CI
  • 759e1e3 Keep the prior behavior of overwriting File.page (#3381)
  • Additional commits viewable in compare view

Updates mkdocstrings from 0.22.0 to 0.24.0

Release notes

Sourced from mkdocstrings's releases.

0.24.0

0.24.0 - 2023-11-14

Compare with 0.23.0

Features

Bug Fixes

Code Refactoring

0.23.0

0.23.0 - 2023-08-28

Compare with 0.22.0

Breaking Changes

  • Removed BaseCollector and BaseRenderer classes: they were merged into the BaseHandler class.
  • Removed the watch feature, as MkDocs now provides it natively.
  • Removed support for selection and rendering keys in YAML blocks: use options instead.
  • Removed support for loading handlers from the mkdocstrings.handler namespace. Handlers must now be packaged under the mkdocstrings_handlers namespace.

Features

  • Register all anchors for each object in the inventory (228fb73 by Timothée Mazzucotelli).

Bug Fixes

  • Don't add codehilite CSS class to inline code (7690d41 by Timothée Mazzucotelli).
  • Support cross-references for API docs rendered in top-level index page (b194452 by Timothée Mazzucotelli).

Code Refactoring

  • Sort inventories before writing them to disk (9371e9f by Timothée Mazzucotelli).
  • Stop accepting sets as return value of get_anchors (only tuples), to preserve order (2e10374 by Timothée Mazzucotelli).
  • Remove deprecated parts (0a90a47 by Timothée Mazzucotelli).
  • Use proper parameters in Inventory.register method (433c6e0 by Timothée Mazzucotelli).
Changelog

Sourced from mkdocstrings's changelog.

0.24.0 - 2023-11-14

Compare with 0.23.0

Features

Bug Fixes

Code Refactoring

0.23.0 - 2023-08-28

Compare with 0.22.0

Breaking Changes

  • Removed BaseCollector and BaseRenderer classes: they were merged into the BaseHandler class.
  • Removed the watch feature, as MkDocs now provides it natively.
  • Removed support for selection and rendering keys in YAML blocks: use options instead.
  • Removed support for loading handlers from the mkdocstrings.handler namespace. Handlers must now be packaged under the mkdocstrings_handlers namespace.

Features

  • Register all anchors for each object in the inventory (228fb73 by Timothée Mazzucotelli).

Bug Fixes

  • Don't add codehilite CSS class to inline code (7690d41 by Timothée Mazzucotelli).
  • Support cross-references for API docs rendered in top-level index page (b194452 by Timothée Mazzucotelli).

Code Refactoring

  • Sort inventories before writing them to disk (9371e9f by Timothée Mazzucotelli).
  • Stop accepting sets as return value of get_anchors (only tuples), to preserve order (2e10374 by Timothée Mazzucotelli).
  • Remove deprecated parts (0a90a47 by Timothée Mazzucotelli).
  • Use proper parameters in Inventory.register method (433c6e0 by Timothée Mazzucotelli).
Commits
  • 032e417 chore: Prepare release 0.24.0
  • ce84dd5 feat: Cache downloaded inventories as local file
  • 4a97755 docs: Make recipe work with MkDocs -f option
  • b3edf89 ci: Some typing fixes/ignore
  • d74fada tests: Stop passing config file path to MkDocsConfig
  • 4dbb6d6 ci: Ruff auto-fix
  • 39694ac chore: Template upgrade
  • afc4ea4 fix: custom_templates config was dropped in previous commit (#630)
  • b61d4d1 refactor: Drop support for MkDocs < 1.4, modernize usages
  • 370a61d fix: Make custom_templates relative to the config file
  • Additional commits viewable in compare view

Updates pymdown-extensions from 10.1 to 10.5

Release notes

Sourced from pymdown-extensions's releases.

10.5

  • NEW: Blocks: Admonitions and Details now allow configuring custom block classes and default titles.
  • FIX: Keys: Ensure that Keys does not parse base64 encoded URLs.

10.4

  • NEW: Snippets: Allow PathLike objects for base_path to better support interactions with MkDocs.
  • FIX: Block Admonitions: Empty titles should be respected.
  • FIX: Block Details: Empty summary should be respected.

10.3.1

  • FIX: SuperFences: Fix an issue where braces were not handled properly in attributes.

10.3

  • NEW: Officially support Python 3.12.
  • NEW: Drop Python 3.7 support.

10.2.1

  • FIX: Tabbed: Fix regression.
Commits
  • 899e811 Remove discord links
  • ffa969c Badges should reference main
  • 5011a81 Codecov badge should reference main
  • a48b616 Remove dead escape code and require Python 3.5 which drops Py 3.7 (#2249)
  • e882b8e Docs: Update JS deps
  • ee9fe14 Add further customization ability to admonitions and details (#2241)
  • b336f93 Keys should not parse base64 encoded URLs (#2245)
  • cf97b06 Docs: Fix some focus issues
  • 054f84b Docs: update JS deps
  • 8ca86fb Update docs to use Mermaid 10.6.1 and update examples to use the same
  • Additional commits viewable in compare view

Updates pygments from 2.15.1 to 2.17.2

Release notes

Sourced from pygments's releases.

2.17.2

  • Fix a packaging issue on macOS (#2593)

2.17.1

  • Updated lexers:

    • TOML: Fix bug making lexing of single-quoted strings too eager

2.17.0

Bumps the pip-dependencies group with 16 updates:

| Package | From | To |
| --- | --- | --- |
| [multimethod](https://github.com/coady/multimethod) | `1.9.1` | `1.10` |
| [kerchunk](https://github.com/fsspec/kerchunk) | `0.1.2` | `0.2.2` |
| [mypy](https://github.com/python/mypy) | `1.4.1` | `1.7.1` |
| [jupyterlab](https://github.com/jupyterlab/jupyterlab) | `4.0.3` | `4.0.9` |
| [pre-commit](https://github.com/pre-commit/pre-commit) | `3.3.3` | `3.5.0` |
| [pytest](https://github.com/pytest-dev/pytest) | `7.4.0` | `7.4.3` |
| [mkdocs](https://github.com/mkdocs/mkdocs) | `1.5.1` | `1.5.3` |
| [mkdocstrings](https://github.com/mkdocstrings/mkdocstrings) | `0.22.0` | `0.24.0` |
| [pymdown-extensions](https://github.com/facelessuser/pymdown-extensions) | `10.1` | `10.5` |
| [pygments](https://github.com/pygments/pygments) | `2.15.1` | `2.17.2` |
| [responses](https://github.com/getsentry/responses) | `0.23.3` | `0.24.1` |
| [types-requests](https://github.com/python/typeshed) | `2.31.0.2` | `2.31.0.6` |
| [types-setuptools](https://github.com/python/typeshed) | `68.0.0.3` | `69.0.0.0` |
| [widgetsnbextension](http://jupyter.org) | `4.0.8` | `4.0.9` |
| [matplotlib](https://github.com/matplotlib/matplotlib) | `3.7.2` | `3.7.4` |
| [bump-my-version](https://github.com/callowayproject/bump-my-version) | `0.10.0` | `0.12.0` |


Updates `multimethod` from 1.9.1 to 1.10
- [Changelog](https://github.com/coady/multimethod/blob/main/CHANGELOG.md)
- [Commits](coady/multimethod@v1.9.1...v1.10)

Updates `kerchunk` from 0.1.2 to 0.2.2
- [Commits](fsspec/kerchunk@0.1.2...0.2.2)

Updates `mypy` from 1.4.1 to 1.7.1
- [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md)
- [Commits](python/mypy@v1.4.1...v1.7.1)

Updates `jupyterlab` from 4.0.3 to 4.0.9
- [Release notes](https://github.com/jupyterlab/jupyterlab/releases)
- [Changelog](https://github.com/jupyterlab/jupyterlab/blob/@jupyterlab/[email protected]/CHANGELOG.md)
- [Commits](https://github.com/jupyterlab/jupyterlab/compare/@jupyterlab/[email protected]...@jupyterlab/[email protected])

Updates `pre-commit` from 3.3.3 to 3.5.0
- [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@v3.3.3...v3.5.0)

Updates `pytest` from 7.4.0 to 7.4.3
- [Release notes](https://github.com/pytest-dev/pytest/releases)
- [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst)
- [Commits](pytest-dev/pytest@7.4.0...7.4.3)

Updates `mkdocs` from 1.5.1 to 1.5.3
- [Release notes](https://github.com/mkdocs/mkdocs/releases)
- [Commits](mkdocs/mkdocs@1.5.1...1.5.3)

Updates `mkdocstrings` from 0.22.0 to 0.24.0
- [Release notes](https://github.com/mkdocstrings/mkdocstrings/releases)
- [Changelog](https://github.com/mkdocstrings/mkdocstrings/blob/main/CHANGELOG.md)
- [Commits](mkdocstrings/mkdocstrings@0.22.0...0.24.0)

Updates `pymdown-extensions` from 10.1 to 10.5
- [Release notes](https://github.com/facelessuser/pymdown-extensions/releases)
- [Commits](facelessuser/pymdown-extensions@10.1.0...10.5)

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

Updates `responses` from 0.23.3 to 0.24.1
- [Release notes](https://github.com/getsentry/responses/releases)
- [Changelog](https://github.com/getsentry/responses/blob/master/CHANGES)
- [Commits](getsentry/responses@0.23.3...0.24.1)

Updates `types-requests` from 2.31.0.2 to 2.31.0.6
- [Commits](https://github.com/python/typeshed/commits)

Updates `types-setuptools` from 68.0.0.3 to 69.0.0.0
- [Commits](https://github.com/python/typeshed/commits)

Updates `widgetsnbextension` from 4.0.8 to 4.0.9

Updates `matplotlib` from 3.7.2 to 3.7.4
- [Release notes](https://github.com/matplotlib/matplotlib/releases)
- [Commits](matplotlib/matplotlib@v3.7.2...v3.7.4)

Updates `bump-my-version` from 0.10.0 to 0.12.0
- [Release notes](https://github.com/callowayproject/bump-my-version/releases)
- [Changelog](https://github.com/callowayproject/bump-my-version/blob/master/CHANGELOG.md)
- [Commits](https://github.com/callowayproject/bump-my-version/commits)

---
updated-dependencies:
- dependency-name: multimethod
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-dependencies
- dependency-name: kerchunk
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-dependencies
- dependency-name: mypy
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pip-dependencies
- dependency-name: jupyterlab
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: pip-dependencies
- dependency-name: pre-commit
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pip-dependencies
- dependency-name: pytest
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: pip-dependencies
- dependency-name: mkdocs
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: pip-dependencies
- dependency-name: mkdocstrings
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pip-dependencies
- dependency-name: pymdown-extensions
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pip-dependencies
- dependency-name: pygments
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pip-dependencies
- dependency-name: responses
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pip-dependencies
- dependency-name: types-requests
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: pip-dependencies
- dependency-name: types-setuptools
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: pip-dependencies
- dependency-name: widgetsnbextension
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: pip-dependencies
- dependency-name: matplotlib
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: pip-dependencies
- dependency-name: bump-my-version
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pip-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Dec 1, 2023
Copy link

github-actions bot commented Dec 1, 2023

Binder 👈 Launch a binder notebook on this branch for commit b5edad4

I will automatically update this comment whenever this PR is modified

Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 5, 2023

Dependabot tried to update this pull request, but something went wrong. We're looking into it, but in the meantime you can retry the update by commenting @dependabot rebase.

@MattF-NSIDC
Copy link

Dependabot got stuck

@MattF-NSIDC MattF-NSIDC closed this Dec 5, 2023
Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 5, 2023

This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests.

@dependabot dependabot bot deleted the dependabot/pip/pip-dependencies-7e51227a03 branch December 5, 2023 19:07
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