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 11 updates #162

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

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

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

Package From To
fastapi 0.112.2 0.115.0
langchain 0.2.14 0.3.1
ollama 0.3.1 0.3.3
openai 1.42.0 1.50.2
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
uvicorn 0.30.6 0.31.0
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.1

Release notes

Sourced from langchain's releases.

langchain-core==0.3.1

Changes since langchain-core==0.3.0

core[patch]: Release 0.3.1 (#26581) core[patch]: Fix "argument of type 'NoneType' is not iterable" error in LangChainTracer (#26576) core[minor]: remove beta from RemoveMessage (#26579)

langchain-experimental==0.3.1

Changes since langchain-experimental==0.3.0

experimental: release 0.3.1 (#26830) experimental[major]: CVE-2024-46946 fix (#26783) fix[experimental]: Fix text splitter with gradient (#26629) Fix async parsing for llm graph transformer (#26650) Add check for prompt based approach in llm graph transformer (#26519)

langchain-community==0.3.1

Changes since langchain-community==0.3.0

community: bump langchain version (#26876) community: bump core versoin (#26875) 0.3.1 release community (#26872) community[patch]: Fix validation error in SettingsConfigDict across multiple Langchain modules (#26852) community[minor]: [Pebblo] Enhance PebbloSafeLoader to take anonymize flag (#26812) community[patch]: [SharePointLoader] Fix validation error in _O365Settings due to extra fields in .env file (#26851) community[patch]: callback before yield for friendli (#26842) community[patch]: callback before yield for deepsparse llm (#26822) community: Add Sambanova Cloud Chat model community integration (#26333) community[patch]: Fix tool_calls parsing when streaming from DeepInfra (#26813) community[patch]: callback before yield for bedrock llm (#26804) Remove pydantic restricted namespaces from HuggingFaceInferenceAPIEmbedings (#26744) community[patch]: Handle empty PR body in get_pull_request in Github utility (#26739) community: Fix links in GraphVectorStore pydoc (#25959) core: Add docstring for GraphVectorStoreRetriever (#26224) community[patch]: add web loader tests (#26728) Avoid copying runs (#26689) support epsilla cloud vector database in langchain (#26065) fix:fix ChatZhipuAI tool call bug (#26693) core, community: move graph vectorstores to community (#26678) [community] Fix WorkspaceClient error with pydantic validation (#26649) community[patch]: add to pypdf tests and run in CI (#26663) [community] Added PebbloTextLoader for loading text data in PebbloSafeLoader (#26582) community: fix error in sambastudio embeddings (#26260) community: remove sambaverse (#26265) community : [bugfix] Use document ids as keys in AzureSearch vectorstore (#25486) community: Add warning when page_content is empty (#25955) docs[community]: Fix raw string in docstring (#26350) community: Retry retriable errors in Neo4j (#26211) Improvement[Community] Improve api doc of BeautifulSoupTransformer (#26423) community[patch]: o1-preview and o1-mini costs (#26411)

... (truncated)

Commits
  • 9a31ad6 langchain: release 0.3.1 (#26868)
  • ef2ab26 core: release 0.3.6 (#26863)
  • 87e2149 docs[patch]: remove deprecated loaders from feature tables (#26709)
  • a001006 docs[patch]: add guide for loading web pages (#26708)
  • eaffa92 openai[patch]: Release 0.2.1 (#26858)
  • 51c4393 community[patch]: Fix validation error in SettingsConfigDict across multiple ...
  • d502858 Update main README.md to reference latest version of documentation (#26854)
  • 27c1214 docs[patch]: In conceptual docs explain constraints on ToolMessage (#26792)
  • 3a1b925 core: Add ruff rules for comprehensions (C4) (#26829)
  • 7e5a9c3 community[minor]: [Pebblo] Enhance PebbloSafeLoader to take anonymize flag (#...
  • Additional commits viewable in compare view

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.50.2

Release notes

Sourced from openai's releases.

v1.50.2

1.50.2 (2024-09-27)

Full Changelog: v1.50.1...v1.50.2

Bug Fixes

  • audio: correct types for transcriptions / translations (#1755) (76c1f3f)

v1.50.1

1.50.1 (2024-09-27)

Full Changelog: v1.50.0...v1.50.1

Documentation

v1.50.0

1.50.0 (2024-09-26)

Full Changelog: v1.49.0...v1.50.0

Features

  • structured outputs: add support for accessing raw responses (#1748) (0189e28)

Chores

  • pydantic v1: exclude specific properties when rich printing (#1751) (af535ce)

v1.49.0

1.49.0 (2024-09-26)

Full Changelog: v1.48.0...v1.49.0

Features

Chores

v1.48.0

1.48.0 (2024-09-25)

Full Changelog: v1.47.1...v1.48.0

... (truncated)

Changelog

Sourced from openai's changelog.

1.50.2 (2024-09-27)

Full Changelog: v1.50.1...v1.50.2

Bug Fixes

  • audio: correct types for transcriptions / translations (#1755) (76c1f3f)

1.50.1 (2024-09-27)

Full Changelog: v1.50.0...v1.50.1

Documentation

1.50.0 (2024-09-26)

Full Changelog: v1.49.0...v1.50.0

Features

  • structured outputs: add support for accessing raw responses (#1748) (0189e28)

Chores

  • pydantic v1: exclude specific properties when rich printing (#1751) (af535ce)

1.49.0 (2024-09-26)

Full Changelog: v1.48.0...v1.49.0

Features

Chores

1.48.0 (2024-09-25)

Full Changelog: v1.47.1...v1.48.0

Features

  • client: allow overriding retry count header (#1745) (9f07d4d)

... (truncated)

Commits

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.experimental and fi...

    Description has been truncated

Bumps the python-deps group with 11 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.1` |
| [ollama](https://github.com/jmorganca/ollama-python) | `0.3.1` | `0.3.3` |
| [openai](https://github.com/openai/openai-python) | `1.42.0` | `1.50.2` |
| [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` |
| [uvicorn](https://github.com/encode/uvicorn) | `0.30.6` | `0.31.0` |
| [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.1
- [Release notes](https://github.com/langchain-ai/langchain/releases)
- [Commits](langchain-ai/langchain@langchain==0.2.14...langchain==0.3.1)

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.50.2
- [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.50.2)

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 `uvicorn` from 0.30.6 to 0.31.0
- [Release notes](https://github.com/encode/uvicorn/releases)
- [Changelog](https://github.com/encode/uvicorn/blob/master/CHANGELOG.md)
- [Commits](encode/uvicorn@0.30.6...0.31.0)

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: uvicorn
  dependency-type: direct:production
  update-type: version-update:semver-minor
  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 30, 2024
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