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 python-deps group across 1 directory with 10 updates #160

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the python-deps group with 10 updates in the / directory:

Package From To
fastapi 0.112.2 0.115.0
langchain 0.2.14 0.3.0
ollama 0.3.1 0.3.3
openai 1.42.0 1.47.0
pydantic 2.8.2 2.9.2
pymupdf 1.24.9 1.24.10
pytz 2024.1 2024.2
sentry-sdk[fastapi,openai,starlette] 2.13.0 2.14.0
unstructured 0.15.7 0.15.13
weaviate-client 4.7.1 4.8.1

Updates fastapi from 0.112.2 to 0.115.0

Release notes

Sourced from fastapi's releases.

0.115.0

Highlights

Now you can declare Query, Header, and Cookie parameters with Pydantic models. 🎉

Query Parameter Models

Use Pydantic models for Query parameters:

from typing import Annotated, Literal
from fastapi import FastAPI, Query
from pydantic import BaseModel, Field
app = FastAPI()
class FilterParams(BaseModel):
limit: int = Field(100, gt=0, le=100)
offset: int = Field(0, ge=0)
order_by: Literal["created_at", "updated_at"] = "created_at"
tags: list[str] = []
@​app.get("/items/")
async def read_items(filter_query: Annotated[FilterParams, Query()]):
return filter_query

Read the new docs: Query Parameter Models.

Header Parameter Models

Use Pydantic models for Header parameters:

from typing import Annotated
from fastapi import FastAPI, Header
from pydantic import BaseModel
app = FastAPI()
class CommonHeaders(BaseModel):
host: str
save_data: bool
if_modified_since: str | None = None
traceparent: str | None = None
</tr></table>

... (truncated)

Commits
  • 40e33e4 🔖 Release version 0.115.0
  • b36047b 📝 Update release notes
  • 7eadeb6 📝 Update release notes
  • 55035f4 ✨ Add support for Pydantic models for parameters using Query, Cookie, `He...
  • 0903da7 📝 Update release notes
  • 4b2b14a ⬆ [pre-commit.ci] pre-commit autoupdate (#12204)
  • 35df20c 📝 Update release notes
  • 8eb3c56 🌐 Add Portuguese translation for `docs/pt/docs/advanced/security/http-basic-a...
  • 2ada161 🔖 Release version 0.114.2
  • 3a5fd71 📝 Update release notes
  • Additional commits viewable in compare view

Updates langchain from 0.2.14 to 0.3.0

Release notes

Sourced from langchain's releases.

langchain-community==0.3.0

Changes since langchain-community==0.2.17

community: release 0.3 (#26472) multiple: pydantic 2 compatibility, v0.3 (#26443)

langchain-core==0.3.0

Changes since langchain-core==0.2.40

core: release 0.3.0 (#26453) multiple: pydantic 2 compatibility, v0.3 (#26443)

langchain-experimental==0.3.0

Changes since langchain-experimental==0.0.65

experimental: release 0.3 (#26477) multiple: pydantic 2 compatibility, v0.3 (#26443) Add the option to ignore structured output method to LLM graph transf… (#26013)

langchain-text-splitters==0.3.0

Changes since langchain-text-splitters==0.2.4

text-splitters: release 0.3 (#26460) multiple: pydantic 2 compatibility, v0.3 (#26443)

langchain==0.3.0

Changes since langchain==0.2.16

langchain: release 0.3.0 (#26462) multiple: pydantic 2 compatibility, v0.3 (#26443) core[minor]: Remove serialized manifest from tracing requests for non-llm runs (#26270)

langchain-core==0.3.0.dev5

Changes since langchain-core==0.2.39

core[patch]: fix regression in convert_to_openai_tool with instances of Tool (#26327) core[patch]: Support non ASCII characters in tool output if user doesn't output string (#26319) Keyword-like runnable config (#26295)

langchain-core==0.3.0.dev4

Changes since langchain-core==0.2.38

infra: Clear cache for env-var checks (#26073) fmt fmt

langchain-core==0.3.0.dev3

Changes since langchain-core==0.2.38

infra: Clear cache for env-var checks (#26073)

... (truncated)

Commits

Updates ollama from 0.3.1 to 0.3.3

Release notes

Sourced from ollama's releases.

v0.3.3

What's Changed

New Contributors

Full Changelog: ollama/ollama-python@v0.3.2...v0.3.3

v0.3.2

What's Changed

New Contributors

Full Changelog: ollama/ollama-python@v0.3.1...v0.3.2

Commits
  • 89e8b74 Merge pull request #267 from ollama/dependabot/pip/ruff-0.6.3
  • 81edab1 _stream in async client raises RuntimeError processing HTTP errors (#266)
  • 5f51129 Bump ruff from 0.6.2 to 0.6.3
  • d98f646 IPv6 support (#262)
  • 981015c Merge pull request #261 from ollama/dependabot/pip/ruff-0.6.2
  • 9c34d81 Bump ruff from 0.5.5 to 0.6.2
  • 9f2832d Merge pull request #260 from ollama/dependabot/pip/pytest-asyncio-0.24.0
  • e220e46 Merge pull request #252 from ollama/dependabot/pip/pytest-httpserver-1.1.0
  • dfdeb7c Add URL path to client URL in in Client._parse_host() (#170)
  • 9e6726e Bump pytest-asyncio from 0.23.8 to 0.24.0
  • Additional commits viewable in compare view

Updates openai from 1.42.0 to 1.47.0

Release notes

Sourced from openai's releases.

v1.47.0

1.47.0 (2024-09-20)

Full Changelog: v1.46.1...v1.47.0

Features

  • client: send retry count header (21b0c00)

Chores

  • types: improve type name for embedding models (#1730) (4b4eb2b)

v1.46.1

1.46.1 (2024-09-19)

Full Changelog: v1.46.0...v1.46.1

Bug Fixes

Chores

  • streaming: silence pydantic model_dump warnings (#1722) (30f84b9)

v1.46.0

1.46.0 (2024-09-17)

Full Changelog: v1.45.1...v1.46.0

Features

  • client: add ._request_id property to object responses (#1707) (8b3da05)

Documentation

  • readme: add examples for chat with image content (#1703) (192b8f2)

v1.45.1

1.45.1 (2024-09-16)

Full Changelog: v1.45.0...v1.45.1

Chores

... (truncated)

Changelog

Sourced from openai's changelog.

1.47.0 (2024-09-20)

Full Changelog: v1.46.1...v1.47.0

Features

  • client: send retry count header (21b0c00)

Chores

  • types: improve type name for embedding models (#1730) (4b4eb2b)

1.46.1 (2024-09-19)

Full Changelog: v1.46.0...v1.46.1

Bug Fixes

Chores

  • streaming: silence pydantic model_dump warnings (#1722) (30f84b9)

1.46.0 (2024-09-17)

Full Changelog: v1.45.1...v1.46.0

Features

  • client: add ._request_id property to object responses (#1707) (8b3da05)

Documentation

  • readme: add examples for chat with image content (#1703) (192b8f2)

1.45.1 (2024-09-16)

Full Changelog: v1.45.0...v1.45.1

Chores

... (truncated)

Commits
  • 45315a7 release: 1.47.0
  • eab2e5a chore(types): improve type name for embedding models (#1730)
  • 3765cc2 feat(client): send retry count header
  • 6172976 release: 1.46.1
  • bd1e9e2 fix(client): handle domains with underscores (#1726)
  • 349b7f6 chore(streaming): silence pydantic model_dump warnings (#1722)
  • bcf9fcc release: 1.46.0
  • 4b30234 feat(client): add ._request_id property to object responses (#1707)
  • 192b8f2 docs(readme): add examples for chat with image content (#1703)
  • 73f9fda release: 1.45.1
  • Additional commits viewable in compare view

Updates pydantic from 2.8.2 to 2.9.2

Release notes

Sourced from pydantic's releases.

v2.9.2 (2024-09-17)

What's Changed

Fixes

Full Changelog: pydantic/pydantic@v2.9.1...v2.9.2

v2.9.1 (2024-09-09)

What's Changed

Fixes

Full Changelog: pydantic/pydantic@v2.9.0...v2.9.1

v2.9.0 (2024-09-05)

The code released in v2.9.0 is practically identical to that of v2.9.0b2.

Check out our blog post to learn more about the release highlights!

What's Changed

Packaging

New Features

... (truncated)

Changelog

Sourced from pydantic's changelog.

v2.9.2 (2024-09-17)

GitHub release

What's Changed

Fixes

v2.9.1 (2024-09-09)

GitHub release

What's Changed

Fixes

v2.9.0 (2024-09-05)

GitHub release

The code released in v2.9.0 is practically identical to that of v2.9.0b2.

What's Changed

Packaging

New Features

... (truncated)

Commits
  • 7cedbfb history updates
  • 7eab2b8 v bump
  • c0a288f Fix ZoneInfo with various invalid types (#10408)
  • ea6115d Fix variance issue in _IncEx type alias, only allow True (#10414)
  • fbfe25a Fix serialization schema generation when using PlainValidator (#10427)
  • 26cff3c Adding notes on designing callable discriminators (#10400)
  • 8a0e7ad Do not error when trying to evaluate annotations of private attributes (#10358)
  • ecc5275 bump
  • 2c61bfd Fix evaluation of stringified annotations during namespace inspection (#10347)
  • 3d364cb Use correct types namespace when building namedtuple core schemas (#10337)
  • 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 pytz from 2024.1 to 2024.2

Commits
  • 3944f75 Bump version numbers to 2024.2 / 2024b
  • 640c9bd IANA 2024b
  • 382ca0c Squashed 'tz/' changes from 380c07cef..923e54bae
  • 96a1e88 Stop testing unavailable and EOL Python 3.5
  • 68186b6 Add support for Python 3.13
  • e994058 Run other jobs if one fails
  • 2326f9f Bump GitHub Actions
  • See full diff in compare view

Updates sentry-sdk[fastapi,openai,starlette] from 2.13.0 to 2.14.0

Release notes

Sourced from sentry-sdk[fastapi,openai,starlette]'s releases.

2.14.0

Various fixes & improvements

Changelog

Sourced from sentry-sdk[fastapi,openai,starlette]'s changelog.

2.14.0

Various fixes & improvements

Commits
  • 1e73ce9 Updated changelog
  • 3d0edfd release: 2.14.0
  • 6814df9 tests: Remove broken bottle tests (#3505)
  • 0934e04 Fixed config for old coverage versions (#3504)
  • 9fc3bd2 Fix AWS Lambda tests (#3495)
  • e99873d Better test coverage reports (#3498)
  • 0fb9606 feat(celery): Add wrapper for Celery().send_task to support behavior as `Ta...
  • 16d05f4 fix(django): SentryWrappingMiddleware.init fails if super() is object
  • 9df2b21 feat(strawberry): Support Strawberry 0.239.2 (#3491)
  • cd15bff ref: Remove obsolete object as superclass (#3480)
  • Additional commits viewable in compare view

Updates unstructured from 0.15.7 to 0.15.13

Release notes

Sourced from unstructured's releases.

0.15.13

Enhancements

  • Improve pdfminer image cleanup process. Optimized the removal of duplicated pdfminer images by performing the cleanup before merging elements, rather than after. This improvement reduces execution time and enhances overall processing speed of PDF documents.

Features

Fixes

  • Fixes high memory overhead for intersection area computation Using numpy.float32 for coordinates and remove intermediate variables to reduce memory usage when computing intersection areas
  • Fixes the arm64 image build arm64 builds are now fixed and will be available against starting with the 0.15.13 release.

0.15.12

Enhancements

  • Improve pdfminer element processing Implemented splitting of pdfminer elements (groups of text chunks) into smaller bounding boxes (text lines). This prevents loss of information from the object detection model and facilitates more effective removal of duplicated pdfminer text.

0.15.10

Enhancements

  • Enhance pdfminer element cleanup Expand removal of pdfminer elements to include those inside all non-pdfminer elements, not just tables.
  • Modified analysis drawing tools to dump to files and draw from dumps If the parameter analysis of the partition_pdf function is set to True, the layout for Object Detection, Pdfminer Extraction, OCR and final layouts will be dumped as json files. The drawers now accept dict (dump) objects instead of internal classes instances.
  • Vectorize pdfminer elements deduplication computation. Use numpy operations to compute IOU and sub-region membership instead of using simply loop. This improves the speed of deduplicating elements for pages with a lot of elements.

Features

Fixes

0.15.9

Enhancements

Features

  • Add support for encoding parameter in partition_csv

0.15.8

Enhancements

  • Bump unstructured.paddleocr to 2.8.1.0.

Features

  • Add MixedbreadAI embedder Adds MixedbreadAI embeddings to support embedding via Mixedbread AI.

Fixes

... (truncated)

Changelog

Sourced from unstructured's changelog.

0.15.13

BREAKING CHANGES

  • Remove dead experimental code. Unused code in file_utils.experimantal and file_utils.metadata was removed. These functions were never published in the documentation, but if a client dug these out and used them this removal could break client code.

Enhancements

  • Improve pdfminer image cleanup process. Optimized the removal of duplicated pdfminer images by performing the cleanup before merging elements, rather than after. This improvement reduces execution time and enhances overall processing speed of PDF documents.

Features

Fixes

  • Fixes high memory overhead for intersection area computation Using numpy.float32 for coordinates and remove intermediate variables to reduce memory usage when computing intersection areas
  • Fixes the arm64 image build arm64 builds are now fixed and will be available against starting with the 0.15.13 release.

0.15.12

Enhancements

  • Improve pdfminer element processing Implemented splitting of pdfminer elements (groups of text chunks) into smaller bounding boxes (text lines). This prevents loss of information from the object detection model and facilitates more effective removal of duplicated pdfminer text.

Features

Fixes

  • Fixed table accuracy metric Table accuracy was incorrectly using column content difference in calculating row accuracy.

0.15.11

Enhancements

  • Add deprecation warning to embed code
  • Remove ingest console script

0.15.10

Enhancements

  • Enhance pdfminer element cleanup Expand removal of pdfminer elements to include those inside all non-pdfminer elements, not just tables.
  • Modified analysis drawing tools to dump to files and draw from dumps If the parameter analysis of the partition_pdf function is set to True, the layout for Object Detection, Pdfminer Extraction, OCR and final layouts will be dumped as json files. The drawers now accept dict (dump) objects instead of internal classes instances.
  • Vectorize pdfminer elements deduplication computation. Use numpy operations to compute IOU and sub-region membership instead of using simply loop. This improves the speed of deduplicating elements for pages with a lot of elements.

Features

Fixes

0.15.9

... (truncated)

Commits
    ...

    Description has been truncated

Bumps the python-deps group with 10 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [fastapi](https://github.com/fastapi/fastapi) | `0.112.2` | `0.115.0` |
| [langchain](https://github.com/langchain-ai/langchain) | `0.2.14` | `0.3.0` |
| [ollama](https://github.com/jmorganca/ollama-python) | `0.3.1` | `0.3.3` |
| [openai](https://github.com/openai/openai-python) | `1.42.0` | `1.47.0` |
| [pydantic](https://github.com/pydantic/pydantic) | `2.8.2` | `2.9.2` |
| [pymupdf](https://github.com/pymupdf/pymupdf) | `1.24.9` | `1.24.10` |
| [pytz](https://github.com/stub42/pytz) | `2024.1` | `2024.2` |
| [sentry-sdk[fastapi,openai,starlette]](https://github.com/getsentry/sentry-python) | `2.13.0` | `2.14.0` |
| [unstructured](https://github.com/Unstructured-IO/unstructured) | `0.15.7` | `0.15.13` |
| [weaviate-client](https://github.com/weaviate/weaviate-python-client) | `4.7.1` | `4.8.1` |



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

Updates `langchain` from 0.2.14 to 0.3.0
- [Release notes](https://github.com/langchain-ai/langchain/releases)
- [Commits](langchain-ai/langchain@langchain==0.2.14...langchain==0.3.0)

Updates `ollama` from 0.3.1 to 0.3.3
- [Release notes](https://github.com/jmorganca/ollama-python/releases)
- [Commits](ollama/ollama-python@v0.3.1...v0.3.3)

Updates `openai` from 1.42.0 to 1.47.0
- [Release notes](https://github.com/openai/openai-python/releases)
- [Changelog](https://github.com/openai/openai-python/blob/main/CHANGELOG.md)
- [Commits](openai/openai-python@v1.42.0...v1.47.0)

Updates `pydantic` from 2.8.2 to 2.9.2
- [Release notes](https://github.com/pydantic/pydantic/releases)
- [Changelog](https://github.com/pydantic/pydantic/blob/main/HISTORY.md)
- [Commits](pydantic/pydantic@v2.8.2...v2.9.2)

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 `pytz` from 2024.1 to 2024.2
- [Release notes](https://github.com/stub42/pytz/releases)
- [Commits](stub42/pytz@release_2024.1...release_2024.2)

Updates `sentry-sdk[fastapi,openai,starlette]` from 2.13.0 to 2.14.0
- [Release notes](https://github.com/getsentry/sentry-python/releases)
- [Changelog](https://github.com/getsentry/sentry-python/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-python@2.13.0...2.14.0)

Updates `unstructured` from 0.15.7 to 0.15.13
- [Release notes](https://github.com/Unstructured-IO/unstructured/releases)
- [Changelog](https://github.com/Unstructured-IO/unstructured/blob/main/CHANGELOG.md)
- [Commits](Unstructured-IO/unstructured@0.15.7...0.15.13)

Updates `weaviate-client` from 4.7.1 to 4.8.1
- [Release notes](https://github.com/weaviate/weaviate-python-client/releases)
- [Changelog](https://github.com/weaviate/weaviate-python-client/blob/main/docs/changelog.rst)
- [Commits](weaviate/weaviate-python-client@v4.7.1...v4.8.1)

---
updated-dependencies:
- dependency-name: fastapi
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-deps
- dependency-name: langchain
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-deps
- dependency-name: ollama
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-deps
- dependency-name: openai
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-deps
- dependency-name: pydantic
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-deps
- dependency-name: pymupdf
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-deps
- dependency-name: pytz
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-deps
- dependency-name: sentry-sdk[fastapi,openai,starlette]
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-deps
- dependency-name: unstructured
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-deps
- dependency-name: weaviate-client
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-deps
...

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 23, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Sep 30, 2024

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

@dependabot dependabot bot closed this Sep 30, 2024
@dependabot dependabot bot deleted the dependabot/pip/python-deps-1a56d8a214 branch September 30, 2024 01:42
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