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

build(deps): bump the dependencies group with 11 updates #30

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 9, 2023

Bumps the dependencies group with 11 updates:

Package From To
fastapi 0.103.2 0.104.1
hypercorn 0.14.4 0.15.0
uvloop 0.18.0 0.19.0
httpx 0.25.0 0.25.1
transformers 4.34.0 4.35.0
protobuf 4.24.4 4.25.0
pymupdf 1.23.5 1.23.6
pyright 1.1.331 1.1.335
pylint 3.0.1 3.0.2
pytest 7.4.2 7.4.3
ruff 0.1.0 0.1.5

Updates fastapi from 0.103.2 to 0.104.1

Release notes

Sourced from fastapi's releases.

0.104.1

Fixes

  • 📌 Pin Swagger UI version to 5.9.0 temporarily to handle a bug crashing it in 5.9.1. PR #10529 by @​alejandraklachquin.
    • This is not really a bug in FastAPI but in Swagger UI, nevertheless pinning the version will work while a solution is found on the Swagger UI side.

Docs

  • 📝 Update data structure and render for external-links. PR #10495 by @​tiangolo.
  • ✏️ Fix link to SPDX license identifier in docs/en/docs/tutorial/metadata.md. PR #10433 by @​worldworm.
  • 📝 Update example validation error from Pydantic v1 to match Pydantic v2 in docs/en/docs/tutorial/path-params.md. PR #10043 by @​giuliowaitforitdavide.
  • ✏️ Fix typos in emoji docs and in some source examples. PR #10438 by @​afuetterer.
  • ✏️ Fix typo in docs/en/docs/reference/dependencies.md. PR #10465 by @​suravshresth.
  • ✏️ Fix typos and rewordings in docs/en/docs/tutorial/body-nested-models.md. PR #10468 by @​yogabonito.
  • 📝 Update docs, remove references to removed pydantic.Required in docs/en/docs/tutorial/query-params-str-validations.md. PR #10469 by @​yogabonito.
  • ✏️ Fix typo in docs/en/docs/reference/index.md. PR #10467 by @​tarsil.
  • 🔥 Remove unnecessary duplicated docstrings. PR #10484 by @​tiangolo.

Internal

0.104.0

Features

Upgrades

  • ⬆️ Drop support for Python 3.7, require Python 3.8 or above. PR #10442 by @​tiangolo.

Internal

Commits
  • 7e5afe2 🔖 Release version 0.104.1
  • 6c53ddd 📝 Update release notes
  • 0f1ddf5 📝 Update release notes
  • 758a8f2 📌 Pin Swagger UI version to 5.9.0 temporarily to handle a bug crashing it in ...
  • e4b21c6 📝 Update release notes
  • 759378d ✏️ Update Pydantic links to dotenv support (#10511)
  • e7204ac 📝 Update release notes
  • 7702c5a 📝 Update release notes
  • 0066578 📝 Update release notes
  • 6b903ff ✏️ Update links in docs/en/docs/async.md and docs/zh/docs/async.md to mak...
  • Additional commits viewable in compare view

Updates hypercorn from 0.14.4 to 0.15.0

Changelog

Sourced from hypercorn's changelog.

0.15.0 2023-10-29

  • Improve the NoAppError to help diagnose why the app has not been found.
  • Log cancelled requests as well as successful to aid diagnositics of failures.
  • Use more modern asyncio apis. This will hopefully fix reported memory leak issues.
  • Bugfix only load the application in the main process if the reloader is being used.
  • Bugfix Autoreload error because reausing old sockets.
  • Bugfix scope client usage for sock binding.
  • Bugfix disable multiprocessing if number of workers is 0 to support systems that don't support multiprocessing.
Commits
  • 2724ad6 Bump and release 0.15.0
  • 662ffa9 Disable multiprocessing if number of workers is 0
  • 30e6f03 Bugfix scope client usage for sock binding
  • 76bd00f Fix fomatting in 4854ffd89e8661213ff20828b7568a9f004803a9
  • 8133958 Use more modern asyncio apis
  • 3dc7908 Support Python 3.12 drop Python 3.7
  • 4854ffd fix: Autoreload error because reausing old sockets
  • 42ac5db Only load the application in the main process if the reloader is being used.
  • 96e3fce Document keyfile_password configuration factor
  • d7990fb Add some useful flow diagrams
  • Additional commits viewable in compare view

Updates uvloop from 0.18.0 to 0.19.0

Release notes

Sourced from uvloop's releases.

v0.19.0

Changes

Fixes

Commits

Updates httpx from 0.25.0 to 0.25.1

Release notes

Sourced from httpx's releases.

Version 0.25.1

0.25.1 (3rd November, 2023)

  • Add support for Python 3.12. (#2854)
  • Add support for httpcore 1.0 (#2885)

Fixed

  • Raise ValueError on Response.encoding being set after Response.text has been accessed. (#2852)
Changelog

Sourced from httpx's changelog.

0.25.1 (3rd November, 2023)

  • Add support for Python 3.12. (#2854)
  • Add support for httpcore 1.0 (#2885)

Fixed

  • Raise ValueError on Response.encoding being set after Response.text has been accessed. (#2852)
Commits

Updates transformers from 4.34.0 to 4.35.0

Release notes

Sourced from transformers's releases.

Safetensors serialization by default, DistilWhisper, Fuyu, Kosmos-2, SeamlessM4T, Owl-v2

New models

Distil-Whisper

Distil-Whisper is a distilled version of Whisper that is 6 times faster, 49% smaller, and performs within 1% word error rate (WER) on out-of-distribution data. It was proposed in the paper Robust Knowledge Distillation via Large-Scale Pseudo Labelling.

Distil-Whisper copies the entire encoder from Whisper, meaning it retains Whisper's robustness to different audio conditions. It only copies 2 decoder layers, which significantly reduces the time taken to auto-regressively generate text tokens:

Distil-Whisper is MIT licensed and directly available in the Transformers library with chunked long-form inference, Flash Attention 2 support, and Speculative Decoding. For details on using the model, refer to the following instructions.

Joint work from @​sanchit-gandhi, @​patrickvonplaten and @​srush.

Fuyu

image

The Fuyu model was created by ADEPT, and authored by Rohan Bavishi, Erich Elsen, Curtis Hawthorne, Maxwell Nye, Augustus Odena, Arushi Somani, Sağnak Taşırlar.

The authors introduced Fuyu-8B, a decoder-only multimodal model based on the classic transformers architecture, with query and key normalization. A linear encoder is added to create multimodal embeddings from image inputs.

By treating image tokens like text tokens and using a special image-newline character, the model knows when an image line ends. Image positional embeddings are removed. This avoids the need for different training phases for various image resolutions. With 8 billion parameters and licensed under CC-BY-NC, Fuyu-8B is notable for its ability to handle both text and images, its impressive context size of 16K, and its overall performance.

Joint work from @​molbap, @​pcuenca, @​amyeroberts, @​ArthurZucker

SeamlessM4T

image

The SeamlessM4T model was proposed in SeamlessM4T — Massively Multilingual & Multimodal Machine Translation by the Seamless Communication team from Meta AI.

SeamlessM4T is a collection of models designed to provide high quality translation, allowing people from different linguistic communities to communicate effortlessly through speech and text.

SeamlessM4T enables multiple tasks without relying on separate models:

  • Speech-to-speech translation (S2ST)
  • Speech-to-text translation (S2TT)
  • Text-to-speech translation (T2ST)
  • Text-to-text translation (T2TT)
  • Automatic speech recognition (ASR)

... (truncated)

Commits

Updates protobuf from 4.24.4 to 4.25.0

Commits
  • 6b5d8db Updating version.json and repo version numbers to: 25.0
  • 59a66af Merge pull request #14583 from haberman/cherry-pick-python-memory-leak
  • 1711ebd Fixed Python memory leak in map lookup.
  • 8defef5 Include .inc files directly instead of through a filegroup (#14575)
  • 0a5d6d4 Check that ffi-compiler loads before using it to define tasks. (#14538) (#14560)
  • a4964a4 Merge pull request #14460 from protocolbuffers/25.x-202310181825
  • 08b6c40 Updating version.json to: 25.0-dev
  • ba1aab2 Updating version.json and repo version numbers to: 25.0-rc2
  • 3f05c09 update test runners
  • b4abcef Bump minimum PHP to 8.0
  • Additional commits viewable in compare view

Updates pymupdf from 1.23.5 to 1.23.6

Release notes

Sourced from pymupdf's releases.

PyMuPDF-1.23.6 released

PyMuPDF-1.23.6 has been released.

Wheels for Windows, Linux and MacOS, and the sdist, are available on pypi.org and can be installed in the usual way, for example:

python -m pip install --upgrade pymupdf

[Linux-aarch64 wheels are not available yet, they will be build and uploaded later.]

Changes in version 1.23.6 (2023-11-06)

  • Bug fixes:

  • Other:

    • Use MuPDF-1.23.5.
    • Added Document.resolve_names() (rebased implementation only).
Changelog

Sourced from pymupdf's changelog.

Change Log

Changes in version 1.23.6 (2023-11-06)

  • Bug fixes:

    • Fixed 2553 <https://github.com/pymupdf/PyMuPDF/issues/2553>_: Invalid characters in versions >= 1.22
    • Fixed 2608 <https://github.com/pymupdf/PyMuPDF/issues/2608>_: Incorrect utf32 text extraction (high & low surrogates are split)
    • Fixed 2710 <https://github.com/pymupdf/PyMuPDF/issues/2710>_: page.rect and text location wrong / differing from older version
    • Fixed 2774 <https://github.com/pymupdf/PyMuPDF/issues/2774>_: wrong encoding for "?" character when sort=True
    • Fixed 2775 <https://github.com/pymupdf/PyMuPDF/issues/2775>_: fitz_new does not work with python3.10 or earlier
    • Fixed 2777 <https://github.com/pymupdf/PyMuPDF/issues/2777>_: With fitz_new, wrong type for Page.mediabox
  • Other:

    • Use MuPDF-1.23.5.
    • Added Document.resolve_names() (rebased implementation only).

Changes in version 1.23.5 (2023-10-11)

  • Bug fixes:

    • Fixed 2341 <https://github.com/pymupdf/PyMuPDF/issues/2341>_: Handling negative values in the zoom section for LINK_GOTO in linkDest
    • Fixed 2522 <https://github.com/pymupdf/PyMuPDF/issues/2522>_: Typo in set_layer() - NameError: name 'f' is not defined
    • Fixed 2548 <https://github.com/pymupdf/PyMuPDF/issues/2548>_: Fitz freezes on some PDFs when calling the fitz.Page.get_text_blocks method.
    • Fixed 2596 <https://github.com/pymupdf/PyMuPDF/issues/2596>_: save(garbage=3) breaks get_pixmap() with side effect
    • Fixed 2635 <https://github.com/pymupdf/PyMuPDF/issues/2635>_: "clean=True" makes objects invisible in the pdf
    • Fixed 2637 <https://github.com/pymupdf/PyMuPDF/issues/2637>_: Page.insert_textbox incorrectly handles the last word if it starts a new line
    • Fixed 2699 <https://github.com/pymupdf/PyMuPDF/issues/2699>_: extract paragraph with below table
    • Fixed 2703 <https://github.com/pymupdf/PyMuPDF/issues/2703>_: Wrong fontsize calculation in corner cases ("page.get_texttrace()")
    • Fixed 2710 <https://github.com/pymupdf/PyMuPDF/issues/2710>_: page.rect and text location wrong / differing from older version
    • Fixed 2723 <https://github.com/pymupdf/PyMuPDF/issues/2723>_: When will a Python 3.12 wheel be available?
    • Fixed 2730 <https://github.com/pymupdf/PyMuPDF/issues/2730>_: persistent get_text() formatting
  • Other:

    • Use MuPDF-1.23.4.
    • Fix optimisation flags with system installs.
    • Fixed the problem that the clip parameter does not take effect during table recognition
    • Support Pillow mode "RGBa"
    • Support extra word delimiters
    • Support checking valid PDF name objects

Changes in version 1.23.4 (2023-09-26)

  • Improved build instructions.

... (truncated)

Commits
  • fb67864 Update dates for release 1.23.6.
  • 363bce0 tests/test_2548.py: fixed spurious test failure with mupdf release branch.
  • 79b6248 tests/test_2548.py:test_2548(): fixed for mupdf-1.23.x and mupdf-master.
  • 8922a21 tests/test_general.py:test_2710(): fix expectations for mupdf-1.23.x and mupd...
  • a969b1d setup.py: fixed handling of PYMUPDF_SETUP_REBUILD_GIT_DETAILS.
  • 5e4056f pipcl.py: avoid unnecessarily updating .so's on macos.
  • 2f4e2b7 tests/test_2548.py:test_2548(): update to match recent change to mupdf master.
  • 7ffc37c Updates for release 1.23.6.
  • 18ae8b9 docs/document.rst: added Document.resolve_names().
  • a4ccec5 tests/test_textextract.py: added test of docx device's 'space-guess'.
  • Additional commits viewable in compare view

Updates pyright from 1.1.331 to 1.1.335

Commits

Updates pylint from 3.0.1 to 3.0.2

Commits

Updates pytest from 7.4.2 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.

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 ruff from 0.1.0 to 0.1.5

Release notes

Sourced from ruff's releases.

v0.1.5

Changes

Preview features

  • [flake8-bandit] Implement mako-templates (S702) (#8533)
  • [flake8-trio] Implement TRIO105 (#8490)
  • [flake8-trio] Implement TRIO109 (#8534)
  • [flake8-trio] Implement TRIO110 (#8537)
  • [flake8-trio] Implement TRIO115 (#8486)
  • [refurb] Implement type-none-comparison (FURB169) (#8487)
  • Flag all comparisons against builtin types in E721 (#8491)
  • Make SIM118 fix as safe when the expression is a known dictionary (#8525)

Formatter

  • Fix multiline lambda expression statement formatting (#8466)

CLI

  • Add hidden --extension to override inference of source type from file extension (#8373)

Configuration

  • Account for selector specificity when merging extend_unsafe_fixes and override extend_safe_fixes (#8444)
  • Add support for disabling cache with RUFF_NO_CACHE environment variable (#8538)

Bug fixes

  • [E721] Flag comparisons to memoryview (#8485)
  • Allow collapsed-ellipsis bodies in other statements (#8499)
  • Avoid D301 autofix for u prefixed strings (#8495)
  • Only flag flake8-trio rules when trio import is present (#8550)
  • Reject more syntactically invalid Python programs (#8524)
  • Avoid raising TRIO115 violations for trio.sleep(...) calls with non-number values (#8532)
  • Fix F841 false negative on assignment to multiple variables (#8489)

Documentation

  • Fix link to isort known-first-party (#8562)
  • Add notes on fix safety to a few rules (#8500)
  • Add missing toml config tabs (#8512)
  • Add instructions for configuration of Emacs (#8488)
  • Improve detail link contrast in dark mode (#8548)
  • Fix typo in example (#8506)
  • Added tabs for configuration files in the documentation (#8480)
  • Recommend project.requires-python over target-version (#8513)
  • Add singleton escape hatch to B008 documentation (#8501)
  • Fix tab configuration docs (#8502)

... (truncated)

Changelog

Sourced from ruff's changelog.

0.1.5

Preview features

  • [flake8-bandit] Implement mako-templates (S702) (#8533)
  • [flake8-trio] Implement TRIO105 (#8490)
  • [flake8-trio] Implement TRIO109 (#8534)
  • [flake8-trio] Implement TRIO110 (#8537)
  • [flake8-trio] Implement TRIO115 (#8486)
  • [refurb] Implement type-none-comparison (FURB169) (#8487)
  • Flag all comparisons against builtin types in E721 (#8491)
  • Make SIM118 fix as safe when the expression is a known dictionary (#8525)

Formatter

  • Fix multiline lambda expression statement formatting (#8466)

CLI

  • Add hidden --extension to override inference of source type from file extension (#8373)

Configuration

  • Account for selector specificity when merging extend_unsafe_fixes and override extend_safe_fixes (#8444)
  • Add support for disabling cache with RUFF_NO_CACHE environment variable (#8538)

Bug fixes

  • [E721] Flag comparisons to memoryview (#8485)
  • Allow collapsed-ellipsis bodies in other statements (#8499)
  • Avoid D301 autofix for u prefixed strings (#8495)
  • Only flag flake8-trio rules when trio import is present (#8550)
  • Reject more syntactically invalid Python programs (#8524)
  • Avoid raising TRIO115 violations for trio.sleep(...) calls with non-number values (#8532)
  • Fix F841 false negative on assignment to multiple variables (#8489)

Documentation

  • Fix link to isort known-first-party (#8562)
  • Add notes on fix safety to a few rules (#8500)
  • Add missing toml config tabs (#8512)
  • Add instructions for configuration of Emacs (#8488)
  • Improve detail link contrast in dark mode (#8548)
  • Fix typo in example (#8506)
  • Added tabs for configuration files in the documentation (#8480)
  • Recommend project.requires-python over target-version (#8513)
  • Add singleton escape hatch to B008 documentation (#8501)
  • Fix tab configuration docs (#8502)

0.1.4

... (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 dependencies group with 11 updates:

| Package | From | To |
| --- | --- | --- |
| [fastapi](https://github.com/tiangolo/fastapi) | `0.103.2` | `0.104.1` |
| [hypercorn](https://github.com/pgjones/hypercorn) | `0.14.4` | `0.15.0` |
| [uvloop](https://github.com/MagicStack/uvloop) | `0.18.0` | `0.19.0` |
| [httpx](https://github.com/encode/httpx) | `0.25.0` | `0.25.1` |
| [transformers](https://github.com/huggingface/transformers) | `4.34.0` | `4.35.0` |
| [protobuf](https://github.com/protocolbuffers/protobuf) | `4.24.4` | `4.25.0` |
| [pymupdf](https://github.com/pymupdf/pymupdf) | `1.23.5` | `1.23.6` |
| [pyright](https://github.com/RobertCraigie/pyright-python) | `1.1.331` | `1.1.335` |
| [pylint](https://github.com/pylint-dev/pylint) | `3.0.1` | `3.0.2` |
| [pytest](https://github.com/pytest-dev/pytest) | `7.4.2` | `7.4.3` |
| [ruff](https://github.com/astral-sh/ruff) | `0.1.0` | `0.1.5` |


Updates `fastapi` from 0.103.2 to 0.104.1
- [Release notes](https://github.com/tiangolo/fastapi/releases)
- [Commits](fastapi/fastapi@0.103.2...0.104.1)

Updates `hypercorn` from 0.14.4 to 0.15.0
- [Changelog](https://github.com/pgjones/hypercorn/blob/main/CHANGELOG.rst)
- [Commits](pgjones/hypercorn@0.14.4...0.15.0)

Updates `uvloop` from 0.18.0 to 0.19.0
- [Release notes](https://github.com/MagicStack/uvloop/releases)
- [Commits](MagicStack/uvloop@v0.18.0...v0.19.0)

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

Updates `transformers` from 4.34.0 to 4.35.0
- [Release notes](https://github.com/huggingface/transformers/releases)
- [Commits](huggingface/transformers@v4.34.0...v4.35.0)

Updates `protobuf` from 4.24.4 to 4.25.0
- [Release notes](https://github.com/protocolbuffers/protobuf/releases)
- [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl)
- [Commits](protocolbuffers/protobuf@v4.24.4...v4.25.0)

Updates `pymupdf` from 1.23.5 to 1.23.6
- [Release notes](https://github.com/pymupdf/pymupdf/releases)
- [Changelog](https://github.com/pymupdf/PyMuPDF/blob/main/changes.txt)
- [Commits](pymupdf/PyMuPDF@1.23.5...1.23.6)

Updates `pyright` from 1.1.331 to 1.1.335
- [Release notes](https://github.com/RobertCraigie/pyright-python/releases)
- [Commits](RobertCraigie/pyright-python@v1.1.331...v1.1.335)

Updates `pylint` from 3.0.1 to 3.0.2
- [Release notes](https://github.com/pylint-dev/pylint/releases)
- [Commits](pylint-dev/pylint@v3.0.1...v3.0.2)

Updates `pytest` from 7.4.2 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.2...7.4.3)

Updates `ruff` from 0.1.0 to 0.1.5
- [Release notes](https://github.com/astral-sh/ruff/releases)
- [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md)
- [Commits](astral-sh/ruff@v0.1.0...v0.1.5)

---
updated-dependencies:
- dependency-name: fastapi
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: hypercorn
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: uvloop
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: httpx
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: transformers
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: protobuf
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: pymupdf
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: pyright
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: pylint
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: pytest
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: ruff
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: 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 Nov 9, 2023
Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 13, 2023

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

@dependabot dependabot bot closed this Nov 13, 2023
@dependabot dependabot bot deleted the dependabot/pip/dependencies-5bd7e233a0 branch November 13, 2023 11:03
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.

0 participants