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 across 1 directory with 14 updates #202

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 5, 2024

Bumps the dependencies group with 14 updates in the / directory:

Package From To
fastapi 0.111.1 0.112.3
pydantic-settings 2.3.4 2.4.0
uvicorn 0.30.3 0.30.6
uvloop 0.19.0 0.20.0
transformers 4.43.3 4.44.2
protobuf 5.27.2 5.28.0
pymupdf 1.24.9 1.24.10
redis 5.0.7 5.0.8
tesserocr 2.7.0 2.7.1
torch 2.4.0 2.4.1
nltk 3.8.1 3.9.1
pyright 1.1.373 1.1.379
pylint 3.2.6 3.2.7
ruff 0.5.5 0.6.3

Updates fastapi from 0.111.1 to 0.112.3

Release notes

Sourced from fastapi's releases.

0.112.3

This release is mainly internal refactors, it shouldn't affect apps using FastAPI in any way. You don't even have to upgrade to this version yet. There are a few bigger releases coming right after. 🚀

Refactors

  • ♻️ Refactor internal check_file_field(), rename to ensure_multipart_is_installed() to clarify its purpose. PR #12106 by @​tiangolo.
  • ♻️ Rename internal create_response_field() to create_model_field() as it's used for more than response models. PR #12103 by @​tiangolo.
  • ♻️ Refactor and simplify internal data from solve_dependencies() using dataclasses. PR #12100 by @​tiangolo.
  • ♻️ Refactor and simplify internal analyze_param() to structure data with dataclasses instead of tuple. PR #12099 by @​tiangolo.
  • ♻️ Refactor and simplify dependencies data structures with dataclasses. PR #12098 by @​tiangolo.

Docs

Translations

  • 🌐 Add Dutch translation for docs/nl/docs/features.md. PR #12101 by @​maxscheijen.
  • 🌐 Add Portuguese translation for docs/pt/docs/advanced/testing-events.md. PR #12108 by @​ceb10n.
  • 🌐 Add Portuguese translation for docs/pt/docs/advanced/security/index.md. PR #12114 by @​ceb10n.
  • 🌐 Add Dutch translation for docs/nl/docs/index.md. PR #12042 by @​svlandeg.
  • 🌐 Update Chinese translation for docs/zh/docs/how-to/index.md. PR #12070 by @​synthpop123.

Internal

0.112.2

Fixes

... (truncated)

Commits
  • 7213d42 🔖 Release version 0.112.3
  • 68e5ef6 📝 Update release notes
  • 1f64a1b ⬆ [pre-commit.ci] pre-commit autoupdate (#12115)
  • 9b2a933 📝 Update release notes
  • f42fd9a 📝 Add External Link: Techniques and applications of SQLAlchemy global filters...
  • cbdc58b 📝 Update release notes
  • 3feed9d 🌐 Add Dutch translation for docs/nl/docs/features.md (#12101)
  • 560c432 📝 Update release notes
  • 7eae925 ⬆ Bump pypa/gh-action-pypi-publish from 1.10.0 to 1.10.1 (#12120)
  • 7d69943 📝 Update release notes
  • Additional commits viewable in compare view

Updates pydantic-settings from 2.3.4 to 2.4.0

Release notes

Sourced from pydantic-settings's releases.

v2.4.0

What's Changed

New Contributors

Full Changelog: pydantic/pydantic-settings@v2.3.4...v2.4.0

Commits

Updates uvicorn from 0.30.3 to 0.30.6

Release notes

Sourced from uvicorn's releases.

Version 0.30.6

Fixed

  • Don't warn when upgrade is not WebSocket and depedencies are installed (#2360)

Full Changelog: encode/uvicorn@0.30.5...0.30.6

Version 0.30.5

Fixed

  • Don't close connection before receiving body on H11 (#2408)

Full Changelog: encode/uvicorn@0.30.4...0.30.5

Version 0.30.4

Fixed

  • Close connection when h11 sets client state to MUST_CLOSE #2375

Full Changelog: encode/uvicorn@0.30.3...0.30.4

Changelog

Sourced from uvicorn's changelog.

0.30.6 (2024-08-13)

Fixed

  • Don't warn when upgrade is not WebSocket and depedencies are installed (#2360)

0.30.5 (2024-08-02)

Fixed

  • Don't close connection before receiving body on H11 (#2408)

0.30.4 (2024-07-31)

Fixed

  • Close connection when h11 sets client state to MUST_CLOSE (#2375)
Commits

Updates uvloop from 0.19.0 to 0.20.0

Release notes

Sourced from uvloop's releases.

v0.20.0

Changes

Fixes

Commits

Updates transformers from 4.43.3 to 4.44.2

Release notes

Sourced from transformers's releases.

Release v4.44.2

Patch release v4.44.2, mostly 2 regressions that were not caught for Jamba and for processors!

Patch release v4.44.1

Here are the different fixes, mostly Gemma2 context length, nits here and there, and generation issues

Full Changelog: huggingface/transformers@v4.44.0...v4.44.1

Release v4.44.0: End to end compile generation!!! Gemma2 (with assisted decoding), Codestral (Mistral for code), Nemotron, Efficient SFT training, CPU Offloaded KVCache, torch export for static cache

This release comes a bit early in our cycle because we wanted to ship important and requested models along with improved performances for everyone!

All of these are included with examples in the awesome https://github.com/huggingface/local-gemma repository! 🎈 We tried to share examples of what is now possible with all the shipped features! Kudos to @​gante, @​sanchit-gandhi and @​xenova

💥 End-to-end generation compile

Generate: end-to-end compilation #30788 by @​gante: model.generate now supports compiling! There are a few limitations, but here is a small snippet:

from transformers import AutoModelForCausalLM, AutoTokenizer
import torch
import copy
model = AutoModelForCausalLM.from_pretrained(
"meta-llama/Meta-Llama-3.1-8B", torch_dtype=torch.bfloat16, device_map="auto"
)
tokenizer = AutoTokenizer.from_pretrained("meta-llama/Meta-Llama-3.1-8B")
compile generate
compiled_generate = torch.compile(model.generate, fullgraph=True, mode="reduce-overhead")
compiled generate does NOT accept parameterization except a) model inputs b) a generation config
generation_config = copy.deepcopy(model.generation_config)
</tr></table>

... (truncated)

Commits

Updates protobuf from 5.27.2 to 5.28.0

Commits
  • 439c42c Updating version.json and repo version numbers to: 28.0
  • c9454f4 Remove --copt="-Werror" from .bazelrc (#18005)
  • f5a1b17 Move -Werror to our test/dev bazelrc files. (#17938)
  • 0c9e14a Merge pull request #17917 from thomasvl/patch_objc_to_28
  • 6a6ebe4 Merge pull request #17919 from protocolbuffers/28.x-202408221734
  • 09ba2bb Updating version.json and repo version numbers to: 28.0-dev
  • e340f52 Updating version.json and repo version numbers to: 28.0-rc3
  • b276420 [ObjC] Issue stderr warnings for deprecated generation options.
  • 13f850d Merge pull request #17913 from protocolbuffers/cp-compat-upgrade
  • 6bf01c5 Binary compatibility shims for GeneratedMessageV3, SingleFieldBuilderV3, Repe...
  • Additional commits viewable in compare view

Updates pymupdf from 1.24.9 to 1.24.10

Release notes

Sourced from pymupdf's releases.

PyMuPDF-1.24.10 released

PyMuPDF-1.24.10 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 will be built and uploaded later.]

Changes in version 1.24.10 (2024-09-02)

  • Use MuPDF-1.24.9.

  • Fixed issues:

  • Other:

    • Object streams and linearization cannot be used together; attempting to do so will raise an exception. (#3603)
    • Fixed handling of non-existing /Contents object.
Changelog

Sourced from pymupdf's changelog.

Change Log

Changes in version 1.24.10 (2024-09-02)

  • Use MuPDF-1.24.9.

  • Fixed issues:

    • Fixed 3450 <https://github.com/pymupdf/PyMuPDF/issues/3450>_: get_pixmap function takes too long to process
    • Fixed 3569 <https://github.com/pymupdf/PyMuPDF/issues/3569>_: Invalid OCGs not ignored by SVG image creation
    • Fixed 3603 <https://github.com/pymupdf/PyMuPDF/issues/3603>_: ObjStm compression and PDF linearization doesn't work together
    • Fixed 3650 <https://github.com/pymupdf/PyMuPDF/issues/3650>_: Linebreak inserted between each letter
    • Fixed 3661 <https://github.com/pymupdf/PyMuPDF/issues/3661>_: Update Document to check the /XYZ len
    • Fixed 3698 <https://github.com/pymupdf/PyMuPDF/issues/3698>_: documentation issue - old code in the annotations documentation
    • Fixed 3705 <https://github.com/pymupdf/PyMuPDF/issues/3705>_: Document.select() behaves weirdly in some particular kind of pdf files
    • Fixed 3706 <https://github.com/pymupdf/PyMuPDF/issues/3706>_: extend Document.getitem type annotation to reflect that the method also accepts slices
    • Fixed 3727 <https://github.com/pymupdf/PyMuPDF/issues/3727>_: Method get_pixmap() make the program exit without any exceptions or messages
    • Fixed 3767 <https://github.com/pymupdf/PyMuPDF/issues/3767>_: Cannot get Tessdata with Tesseract-OCR 5
    • Fixed 3773 <https://github.com/pymupdf/PyMuPDF/issues/3773>_: Link.set_border gives TypeError: '<' not supported between instances of 'NoneType' and 'int'
    • Fixed 3774 <https://github.com/pymupdf/PyMuPDF/issues/3774>_: fitz.version` does not work anymore
    • Fixed 3789 <https://github.com/pymupdf/PyMuPDF/issues/3789>_: ValueError: not enough values to unpack (expected 3, got 2) is thrown when call insert_pdf
    • Fixed 3820 <https://github.com/pymupdf/PyMuPDF/issues/3820>_: class improves namedDest handling
  • Other:

    • Object streams and linearization cannot be used together; attempting to do so will raise an exception. (#3603)
    • Fixed handling of non-existing /Contents object.

Changes in version 1.24.9 (2024-07-24)

  • Use MuPDF-1.24.8.

Changes in version 1.24.8 (2024-07-22)

  • Fixed issues:

    • Fixed 3636 <https://github.com/pymupdf/PyMuPDF/issues/3636>_: API documentation for the open function is not obvious to find.
    • Fixed 3654 <https://github.com/pymupdf/PyMuPDF/issues/3654>_: docx parsing was broken in 1.24.7
    • Fixed 3677 <https://github.com/pymupdf/PyMuPDF/issues/3677>_: Unable to extract subset font name using the newer versions of PyMuPDF : 1.24.6 and 1.24.7.
    • Fixed 3687 <https://github.com/pymupdf/PyMuPDF/issues/3687>_: Page.get_text results in AssertionError for epub files

Other:

  • Fixed various spelling mistakes spotted by codespell.
  • Improved how we modify MuPDF's default configuration on Windows.

... (truncated)

Commits
  • ee09bb5 changes.txt: updated for release of 1.24.10.
  • b627b59 Updated version numbers and dates for release 1.24.10.
  • b1e9f43 setup.py: updated to use mupdf-1.24.9.
  • 54a144c tests/test_insertpdf.py: re-enable test_3789() because now fixed.
  • bb5a456 tests/: added test_3450().
  • 5217275 tests/: added test_3569().
  • 72bb79c tests/: added test_3650().
  • e5bb5ba tests/: added test_3727().
  • 2c903b6 tests/: added test_3705().
  • 877d7e5 Address 3820
  • Additional commits viewable in compare view

Updates redis from 5.0.7 to 5.0.8

Release notes

Sourced from redis's releases.

5.0.8

Changes

  • Resolve some docs warnings (#3322)
  • Add missing type hints for retry.py (#3250)

🔥 Breaking Changes

  • Timeseries insertion filters for close samples (#3228)

🚀 New Features

  • Hash field expiration commands (#3218)
  • Support the MAXAGE option for CLIENT KILL (#3187)
  • Support NOVALUES parameter for HSCAN (#3157)
  • Document XREAD of last message (+) (#3187)
  • Support missing/empty values in search (#3231)
  • Timeseries insertion filters for close samples (#3228)

🧰 Maintenance

  • Add extra tests for GEO search (#3244)
  • Test special characters escaping in search (#3276)

🐛 Bug Fixes

  • Decode search results at field level (#3309)
Commits
  • 6a2a636 Decode search results at field level (#3309)
  • e7ef54a Fix bug: client side caching causes unexpected disconnections (async version)...
  • 0cd0c5d Format connection errors in the same way everywhere (#3305)
  • 6fedfef Prepare for Redis 7.4 RC2 (#3303)
  • ed1680f Add details to the asyncio connection error message (#3211)
  • 511fda0 Add missing type hints for retry.py (#3250)
  • c1a6ff7 Bump rojopolis/spellcheck-github-actions from 0.37.0 to 0.38.0 (#3301)
  • 338cbfd Re-enable Graph tests (#3287)
  • 532bc02 Do not restrict pytest dependencies versions (#3286)
  • b6a0f96 Add CODECOV token to CI (#3285)
  • Additional commits viewable in compare view

Updates tesserocr from 2.7.0 to 2.7.1

Release notes

Sourced from tesserocr's releases.

tesserocr v2.7.1

  • bugfix: set_leptonica_log_level expects int
  • revert: disable tesseract's logging by default (#353)

Full Changelog: sirfz/tesserocr@v2.7.0...v2.7.1

Commits

Updates torch from 2.4.0 to 2.4.1

Release notes

Sourced from torch's releases.

PyTorch 2.4.1 Release, bug fix release

This release is meant to fix the following issues (regressions / silent correctness):

Breaking Changes:

  • The pytorch/pytorch docker image now installs the PyTorch package through pip and has switch its conda installation from miniconda to miniforge (#134274)

Windows:

  • Fix performance regression on Windows related to MKL static linking (#130619) (#130697)
  • Fix error during loading on Windows: [WinError 126] The specified module could not be found. (#131662) (#130697)
  • Fix error on Windows with CPU inference (#131958) (#130697)

MPS:

  • Fix tensor.clamp produces wrong values (#130226)
  • Fix Incorrect result from batch norm with sliced inputs (#133610)

ROCM:

  • Fix for launching kernel invalid config error when calling embedding with large index (#130994)
  • Added a check and a warning when attempting to use hipBLASLt on an unsupported architecture (#128753)
  • Fix image corruption with Memory Efficient Attention when running HuggingFace Diffusers Stable Diffusion 3 pipeline (#133331)

Distributed:

  • Fix FutureWarning when using torch.load internally (#130663)
  • Fix FutureWarning when using torch.cuda.amp.autocast internally (#130660)

Torch.compile:

  • Fix exception with torch compile when onnxruntime-training and deepspeed packages are installed. (#131194)
  • Fix silent incorrectness with torch.library.custom_op with mutable inputs and torch.compile (#133452)
  • Fix SIMD detection on Linux ARM (#129075)
  • Do not use C++20 features in cpu_inducotr code (#130816)

Packaging:

  • Fix for exposing statically linked libstdc++ CXX11 ABI symbols (#134494)
  • Fix error while building pytorch from source due to not missing QNNPACK module (#131864)
  • Make PyTorch buildable from source on PowerPC (#129736)
  • Fix XPU extension building (#132847)

Other:

  • Fix warning when using pickle on a nn.Module that contains tensor attributes (#130246)
  • Fix NaNs return in MultiheadAttention when need_weights=False (#130014)
  • Fix nested tensor MHA produces incorrect results (#130196)
  • Fix error when using torch.utils.flop_counter.FlopCounterMode (#134467)

Release tracker #132400 contains all relevant pull requests related to this release as well as links to related issues.

Commits

Updates nltk from 3.8.1 to 3.9.1

Changelog

Sourced from nltk's changelog.

Version 3.9.1 2024-08-19

  • Fixed bug that prevented wordnet from loading

Version 3.9 2024-08-18

  • Fix security vulnerability CVE-2024-39705 (breaking change)
  • Replace pickled models (punkt, chunker, taggers) by new pickle-free "_tab" packages
  • No longer sort WordNet synsets and relations (sort in calling function when required)
  • Add Python 3.12 support
  • Many other minor fixes

Thanks to the following contributors to 3.8.2: Tom Aarsen, Cat Lee Ball, Veralara Bernhard, Carlos Brandt, Konstantin Chernyshev, Michael Higgins, Eric Kafe, Vivek Kalyan, David Lukes, Rob Malouf, purificant, Alex Rudnick, Liling Tan, Akihiro Yamazaki.

Version 3.8.1 2023-01-02

  • Resolve RCE vulnerability in localhost WordNet Browser (#3100)
  • Remove unused tool scripts (#3099)
  • Resolve XSS vulnerability in localhost WordNet Browser (#3096)
  • Add Python 3.11 support (#3090)

Thanks to the following contributors to 3.8.1: Francis Bond, John Vandenberg, Tom Aarsen

Version 3.8 2022-12-12

  • Refactor dispersion plot (#3082)
  • Provide type hints for LazyCorpusLoader variables (#3081)
  • Throw warning when LanguageModel is initialized with incorrect vocabulary (#3080)
  • Fix WordNet's all_synsets() function (#3078)
  • Resolve TreebankWordDetokenizer inconsistency with end-of-string contractions (#3070)
  • Support both iso639-3 codes and BCP-47 language tags (#3060)
  • Avoid DeprecationWarning in Regexp tokenizer (#3055)
  • Fix many doctests, add doctests to CI (#3054, #3050, #3048)
  • Fix bool field not being read in VerbNet (#3044)
  • Greatly improve time efficiency of SyllableTokenizer when tokenizing numbers (#3042)
  • Fix encodings of Polish udhr corpus reader (#3038)
  • Allow TweetTokenizer to tokenize emoji flag sequences (#3034)
  • Prevent LazyModule from increasing the size of nltk.dict (#3033)
  • Fix CoreNLPServer non-default port issue (#3031)
  • Add "acion" suffix to the Spanish SnowballStemmer (#3030)
  • Allow loading WordNet without OMW (#3026)
  • Use input() in nltk.chat.chatbot() for Jupyter support (#3022)
  • Fix edit_distance_align() in distance.py (#3017)
  • Tackle performance and accuracy regression of sentence tokenizer since NLTK 3.6.6 (#3014)
  • Add the Iota operator to semantic logic (#3010)
  • Resolve critical errors in WordNet app (#3008)
  • Resolve critical error in CHILDES Corpus (#2998)
  • Make WordNet information_content() accept adjective satellites (#2995)
  • Add "strict=True" parameter to CoreNLP (#2993, #3043)

... (truncated)

Commits

Updates pyright fro...

Description has been truncated

…pdates

Bumps the dependencies group with 14 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [fastapi](https://github.com/fastapi/fastapi) | `0.111.1` | `0.112.3` |
| [pydantic-settings](https://github.com/pydantic/pydantic-settings) | `2.3.4` | `2.4.0` |
| [uvicorn](https://github.com/encode/uvicorn) | `0.30.3` | `0.30.6` |
| [uvloop](https://github.com/MagicStack/uvloop) | `0.19.0` | `0.20.0` |
| [transformers](https://github.com/huggingface/transformers) | `4.43.3` | `4.44.2` |
| [protobuf](https://github.com/protocolbuffers/protobuf) | `5.27.2` | `5.28.0` |
| [pymupdf](https://github.com/pymupdf/pymupdf) | `1.24.9` | `1.24.10` |
| [redis](https://github.com/redis/redis-py) | `5.0.7` | `5.0.8` |
| [tesserocr](https://github.com/sirfz/tesserocr) | `2.7.0` | `2.7.1` |
| [torch](https://github.com/pytorch/pytorch) | `2.4.0` | `2.4.1` |
| [nltk](https://github.com/nltk/nltk) | `3.8.1` | `3.9.1` |
| [pyright](https://github.com/RobertCraigie/pyright-python) | `1.1.373` | `1.1.379` |
| [pylint](https://github.com/pylint-dev/pylint) | `3.2.6` | `3.2.7` |
| [ruff](https://github.com/astral-sh/ruff) | `0.5.5` | `0.6.3` |



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

Updates `pydantic-settings` from 2.3.4 to 2.4.0
- [Release notes](https://github.com/pydantic/pydantic-settings/releases)
- [Commits](pydantic/pydantic-settings@v2.3.4...v2.4.0)

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

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

Updates `transformers` from 4.43.3 to 4.44.2
- [Release notes](https://github.com/huggingface/transformers/releases)
- [Commits](huggingface/transformers@v4.43.3...v4.44.2)

Updates `protobuf` from 5.27.2 to 5.28.0
- [Release notes](https://github.com/protocolbuffers/protobuf/releases)
- [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl)
- [Commits](protocolbuffers/protobuf@v5.27.2...v5.28.0)

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

Updates `redis` from 5.0.7 to 5.0.8
- [Release notes](https://github.com/redis/redis-py/releases)
- [Changelog](https://github.com/redis/redis-py/blob/master/CHANGES)
- [Commits](redis/redis-py@v5.0.7...v5.0.8)

Updates `tesserocr` from 2.7.0 to 2.7.1
- [Release notes](https://github.com/sirfz/tesserocr/releases)
- [Commits](sirfz/tesserocr@v2.7.0...v2.7.1)

Updates `torch` from 2.4.0 to 2.4.1
- [Release notes](https://github.com/pytorch/pytorch/releases)
- [Changelog](https://github.com/pytorch/pytorch/blob/main/RELEASE.md)
- [Commits](pytorch/pytorch@v2.4.0...v2.4.1)

Updates `nltk` from 3.8.1 to 3.9.1
- [Changelog](https://github.com/nltk/nltk/blob/develop/ChangeLog)
- [Commits](nltk/nltk@3.8.1...3.9.1)

Updates `pyright` from 1.1.373 to 1.1.379
- [Release notes](https://github.com/RobertCraigie/pyright-python/releases)
- [Commits](RobertCraigie/pyright-python@v1.1.373...v1.1.379)

Updates `pylint` from 3.2.6 to 3.2.7
- [Release notes](https://github.com/pylint-dev/pylint/releases)
- [Commits](pylint-dev/pylint@v3.2.6...v3.2.7)

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

---
updated-dependencies:
- dependency-name: fastapi
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: pydantic-settings
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: uvicorn
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: uvloop
  dependency-type: direct:production
  update-type: version-update:semver-minor
  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: redis
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: tesserocr
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: torch
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: nltk
  dependency-type: direct:production
  update-type: version-update:semver-minor
  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: ruff
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: 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 Sep 5, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Sep 6, 2024

Superseded by #204.

@dependabot dependabot bot closed this Sep 6, 2024
@dependabot dependabot bot deleted the dependabot/pip/dependencies-48d3fe102e branch September 6, 2024 10:15
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