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

chore(deps): bump the poetry group across 1 directory with 18 updates #1227

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 29, 2024

Bumps the poetry group with 18 updates in the / directory:

Package From To
openai 1.55.0 1.55.3
pydantic 2.10.1 2.10.2
typer 0.13.1 0.14.0
aiohttp 3.11.7 3.11.8
jiter 0.6.1 0.8.0
litellm 1.52.14 1.53.1
anthropic 0.37.1 0.40.0
groq 0.11.0 0.13.0
cohere 5.11.4 5.12.0
cerebras-cloud-sdk 1.12.1 1.12.2
fireworks-ai 0.15.8 0.15.9
writer-sdk 1.4.0 1.5.0
coverage 7.6.7 7.6.8
pyright 1.1.386 1.1.389
mkdocs-material 9.5.45 9.5.46
mkdocstrings 0.26.2 0.27.0
pytest-examples 0.0.13 0.0.15
ruff 0.7.1 0.8.1

Updates openai from 1.55.0 to 1.55.3

Release notes

Sourced from openai's releases.

v1.55.3

1.55.3 (2024-11-28)

Full Changelog: v1.55.2...v1.55.3

Bug Fixes

  • client: compat with new httpx 0.28.0 release (#1904) (72b6c63)

v1.55.2

1.55.2 (2024-11-27)

Full Changelog: v1.55.1...v1.55.2

Chores

  • internal: exclude mypy from running on tests (#1899) (e2496f1)

Documentation

  • assistants: correct on_text_delta example (#1896) (460b663)

v1.55.1

1.55.1 (2024-11-25)

Full Changelog: v1.55.0...v1.55.1

Bug Fixes

  • pydantic-v1: avoid runtime error for assistants streaming (#1885) (197c94b)

Chores

Documentation

Changelog

Sourced from openai's changelog.

1.55.3 (2024-11-28)

Full Changelog: v1.55.2...v1.55.3

Bug Fixes

  • client: compat with new httpx 0.28.0 release (#1904) (72b6c63)

1.55.2 (2024-11-27)

Full Changelog: v1.55.1...v1.55.2

Chores

  • internal: exclude mypy from running on tests (#1899) (e2496f1)

Documentation

  • assistants: correct on_text_delta example (#1896) (460b663)

1.55.1 (2024-11-25)

Full Changelog: v1.55.0...v1.55.1

Bug Fixes

  • pydantic-v1: avoid runtime error for assistants streaming (#1885) (197c94b)

Chores

Documentation

Commits

Updates pydantic from 2.10.1 to 2.10.2

Release notes

Sourced from pydantic's releases.

v2.10.2 2024-11-26

What's Changed

Fixes

Full Changelog: pydantic/pydantic@v2.10.1...v2.10.2

Changelog

Sourced from pydantic's changelog.

v2.10.2 (2024-11-25)

GitHub release

What's Changed

Fixes

Commits
  • fe32515 Prepare for v2.10.2 release (#10982)
  • 226cfaf Hide BaseModel.__replace__ definition from type checkers (#10979)
  • 02229a6 hashing support for urls (#10975)
  • a9cf39c Fix type hint of Field.default to be compatible with Python 3.8 and 3.9 (#1...
  • 869eafd Support serialization as any for Secret types and Url types (#10947)
  • 7c0ed72 Do not evaluate annotations for private fields (#10962)
  • d6fc7fc Only evaluate FieldInfo annotations if required during schema building (#10...
  • See full diff in compare view

Updates typer from 0.13.1 to 0.14.0

Release notes

Sourced from typer's releases.

0.14.0

Breaking Changes

  • 🔥 Remove auto naming of groups added via add_typer based on the group's callback function name. PR #1052 by @​patrick91.

Before, it was supported to infer the name of a command group from the callback function name in the sub-app, so, in this code:

import typer
app = typer.Typer()
users_app = typer.Typer()
app.add_typer(users_app)
@​users_app.callback()
def users():  # <-- This was the inferred command group name
"""
Manage users in the app.
"""
@​users_app.command()
def create(name: str):
print(f"Creating user: {name}")

...the command group would be named users, based on the name of the function def users().

Now you need to set it explicitly:

import typer
app = typer.Typer()
users_app = typer.Typer()
app.add_typer(users_app, name="users")  # <-- Explicitly set the command group name
@​users_app.callback()
def users():
"""
Manage users in the app.
"""
@​users_app.command()
def create(name: str):
</tr></table>

... (truncated)

Changelog

Sourced from typer's changelog.

0.14.0

Breaking Changes

  • 🔥 Remove auto naming of groups added via add_typer based on the group's callback function name. PR #1052 by @​patrick91.

Before, it was supported to infer the name of a command group from the callback function name in the sub-app, so, in this code:

import typer
app = typer.Typer()
users_app = typer.Typer()
app.add_typer(users_app)
@​users_app.callback()
def users():  # <-- This was the inferred command group name
"""
Manage users in the app.
"""
@​users_app.command()
def create(name: str):
print(f"Creating user: {name}")

...the command group would be named users, based on the name of the function def users().

Now you need to set it explicitly:

import typer
app = typer.Typer()
users_app = typer.Typer()
app.add_typer(users_app, name="users")  # <-- Explicitly set the command group name
@​users_app.callback()
def users():
"""
Manage users in the app.
"""
@​users_app.command()
</tr></table>

... (truncated)

Commits
  • f5c0b8a 🔖 Release version 0.14.0
  • 7015323 📝 Update release notes
  • 35bad6a 📝 Update release notes
  • 2d1a598 🔥 Remove auto naming of groups added via add_typer based on the group's cal...
  • 45cbfcd 📝 Update release notes
  • 8af0b48 ⬆ Bump pypa/gh-action-pypi-publish from 1.10.3 to 1.12.2 (#1043)
  • 62525f2 📝 Update release notes
  • be45e58 ⬆ Bump mkdocs-material from 9.5.44 to 9.5.46 (#1062)
  • 740610f 📝 Update release notes
  • 5fe79c2 ⬆ Bump ruff from 0.7.4 to 0.8.0 (#1059)
  • Additional commits viewable in compare view

Updates aiohttp from 3.11.7 to 3.11.8

Release notes

Sourced from aiohttp's releases.

3.11.8

Miscellaneous internal changes

  • Improved performance of creating :class:aiohttp.ClientResponse objects when there are no cookies -- by :user:bdraco.

    Related issues and pull requests on GitHub: #10029.

  • Improved performance of creating :class:aiohttp.ClientResponse objects -- by :user:bdraco.

    Related issues and pull requests on GitHub: #10030.

  • Improved performances of creating objects during the HTTP request lifecycle -- by :user:bdraco.

    Related issues and pull requests on GitHub: #10037.

  • Improved performance of constructing :class:aiohttp.web.Response with headers -- by :user:bdraco.

    Related issues and pull requests on GitHub: #10043.

  • Improved performance of making requests when there are no auto headers to skip -- by :user:bdraco.

    Related issues and pull requests on GitHub: #10049.

  • Downgraded logging of invalid HTTP method exceptions on the first request to debug level -- by :user:bdraco.

    HTTP requests starting with an invalid method are relatively common, especially when connected to the public internet, because browsers or other clients may try to speak SSL to a plain-text server or vice-versa. These exceptions can quickly fill the log with noise when nothing is wrong.

    Related issues and pull requests on GitHub:

... (truncated)

Changelog

Sourced from aiohttp's changelog.

3.11.8 (2024-11-27)

Miscellaneous internal changes

  • Improved performance of creating :class:aiohttp.ClientResponse objects when there are no cookies -- by :user:bdraco.

    Related issues and pull requests on GitHub: :issue:10029.

  • Improved performance of creating :class:aiohttp.ClientResponse objects -- by :user:bdraco.

    Related issues and pull requests on GitHub: :issue:10030.

  • Improved performances of creating objects during the HTTP request lifecycle -- by :user:bdraco.

    Related issues and pull requests on GitHub: :issue:10037.

  • Improved performance of constructing :class:aiohttp.web.Response with headers -- by :user:bdraco.

    Related issues and pull requests on GitHub: :issue:10043.

  • Improved performance of making requests when there are no auto headers to skip -- by :user:bdraco.

    Related issues and pull requests on GitHub: :issue:10049.

  • Downgraded logging of invalid HTTP method exceptions on the first request to debug level -- by :user:bdraco.

    HTTP requests starting with an invalid method are relatively common, especially when connected to the public internet, because browsers or other clients may try to speak SSL to a plain-text server or vice-versa. These exceptions can quickly fill the log with noise when nothing is wrong.

... (truncated)

Commits
  • 5ddf720 Release 3.11.8 (#10066)
  • 13152c3 [PR #10055/c11fe96 backport][3.11] Downgrade logging of invalid HTTP methods ...
  • 1b78cae [PR #10059/aac6f741 backport][3.11] Combine executor jobs in FileResponse sen...
  • a5a6981 [PR #10058/12372d7 backport][3.11] Remove unreachable content length check fo...
  • 7e628f4 [PR #8699/11f0e7f backport][3.11] Reduce code indent in ResponseHandler.data_...
  • 1a6fafe [PR #10037/2e369db backport][3.11] Refactor requests and responses to use cla...
  • 653302e [PR #10049/006fbc37 backport][3.11] Improve client performance when there are...
  • d411bc5 [PR #10043/5255cec backport][3.11] Avoid constructing headers mulitidict twic...
  • 3dfd7ae Bump pypa/cibuildwheel from 2.21.3 to 2.22.0 (#10042)
  • 65dab0e [PR #10038/6f4e9615 backport][3.11] Small speed up to StreamWriter.__init__...
  • Additional commits viewable in compare view

Updates jiter from 0.6.1 to 0.8.0

Commits

Updates litellm from 1.52.14 to 1.53.1

Release notes

Sourced from litellm's releases.

v1.53.1

🚨 Relevant Changes:

  • LiteLLM Proxy Virtual Keys: Unique Key Aliases will be enforced on /key/generate and /key/update requests
  • datadog integration will use StandardLoggingPayload (from LiteLLM v1.53.0+) & also supports logging failures BerriAI/litellm#6929

If you need to use the v1 of the payload (not recommended), you can set this in your config

litellm_settings:
  datadog_use_v1: True

Benefits of using StandardLoggingPayload for datadog

What's Changed

New Contributors

Full Changelog: BerriAI/litellm@v1.52.16...v1.53.1

Docker Run LiteLLM Proxy

docker run \
-e STORE_MODEL_IN_DB=True \
-p 4000:4000 \
ghcr.io/berriai/litellm:main-v1.53.1
</tr></table> 

... (truncated)

Commits
  • 05f8109 (feat) Allow disabling ErrorLogs written to the DB (#6940)
  • 0ac2d8b fix doc string
  • 9393434 (fix) tag merging / aggregation logic (#6932)
  • d6181b2 (feat) add enforcement for unique key aliases on /key/update and /key/generat...
  • 4ebb7c8 (docs + fix) Add docs on Moderations endpoint, Text Completion (#6947)
  • eba700a Revert "Revert "(feat) Allow using include to include external YAML files in ...
  • a8b8deb (fix) handle json decode errors for DD exception logging (#6934)
  • 77f714d (bug fix) /key/update was not storing budget_duration in the DB (#6941)
  • 8af5b11 docs: update the docs (#6923)
  • 21156ff LiteLLM Minor Fixes & Improvements (11/27/2024) (#6943)
  • Additional commits viewable in compare view

Updates anthropic from 0.37.1 to 0.40.0

Release notes

Sourced from anthropic's releases.

v0.40.0

0.40.0 (2024-11-28)

Full Changelog: v0.39.0...v0.40.0

Features

  • client: add ._request_id property to object responses (#743) (9fb64a6)

Bug Fixes

  • asyncify: avoid hanging process under certain conditions (#756) (c71bba2)
  • bedrock: correct URL encoding for model params (#759) (be4e73a)
  • client: compat with new httpx 0.28.0 release (#765) (de51f60)
  • don't use dicts as iterables in transform (#750) (1f71464)
  • types: remove anthropic-instant-1.2 model (#744) (23637de)

Chores

  • api: update spec version (#751) (4ec986c)
  • ci: remove unneeded workflow (#742) (472b7d3)
  • internal: exclude mypy from running on tests (#764) (bce763a)
  • internal: fix compat model_dump method when warnings are passed (#760) (0e09236)
  • internal: minor formatting changes (493020e)
  • remove now unused cached-property dep (#762) (b9ffefe)
  • tests: adjust retry timeout values (#736) (27ed781)
  • tests: limit array example length (#754) (6cab2b9)

Documentation

v0.39.0

0.39.0 (2024-11-04)

Full Changelog: v0.38.0...v0.39.0

⚠ BREAKING CHANGES

  • client: remove legacy client.count_tokens() method (#726)

Features

... (truncated)

Changelog

Sourced from anthropic's changelog.

0.40.0 (2024-11-28)

Full Changelog: v0.39.0...v0.40.0

Features

  • client: add ._request_id property to object responses (#743) (9fb64a6)

Bug Fixes

  • asyncify: avoid hanging process under certain conditions (#756) (c71bba2)
  • bedrock: correct URL encoding for model params (#759) (be4e73a)
  • client: compat with new httpx 0.28.0 release (#765) (de51f60)
  • don't use dicts as iterables in transform (#750) (1f71464)
  • types: remove anthropic-instant-1.2 model (#744) (23637de)

Chores

  • api: update spec version (#751) (4ec986c)
  • ci: remove unneeded workflow (#742) (472b7d3)
  • internal: exclude mypy from running on tests (#764) (bce763a)
  • internal: fix compat model_dump method when warnings are passed (#760) (0e09236)
  • internal: minor formatting changes (493020e)
  • remove now unused cached-property dep (#762) (b9ffefe)
  • tests: adjust retry timeout values (#736) (27ed781)
  • tests: limit array example length (#754) (6cab2b9)

Documentation

0.39.0 (2024-11-04)

Full Changelog: v0.38.0...v0.39.0

⚠ BREAKING CHANGES

  • client: remove legacy client.count_tokens() & client.get_tokenizer() methods (#726)
    • This functionality has been replaced by the client.beta.messages.count_tokens() API which supports newer models and all content functionality, such as images and PDFs.

Features

... (truncated)

Commits
  • e7c5fd1 release: 0.40.0
  • ac8cc6d fix(client): compat with new httpx 0.28.0 release (#765)
  • 6023ed8 chore(internal): exclude mypy from running on tests (#764)
  • cfb07d9 chore(internal): minor formatting changes
  • 0ead3c4 fix(bedrock): correct URL encoding for model params (#759)
  • d5586b0 chore: remove now unused cached-property dep (#762)
  • 0ef2ff9 docs: add info log level to readme (#761)
  • cf8f0e7 chore(internal): fix compat model_dump method when warnings are passed (#760)
  • 4dc9320 fix(asyncify): avoid hanging process under certain conditions (#756)
  • 8e29be0 chore(tests): limit array example length (#754)
  • Additional commits viewable in compare view

Updates groq from 0.11.0 to 0.13.0

Release notes

Sourced from groq's releases.

v0.13.0

0.13.0 (2024-11-28)

Full Changelog: v0.12.0...v0.13.0

Features

Bug Fixes

  • client: compat with new httpx 0.28.0 release (#142) (b8abf89)

Chores

  • internal: exclude mypy from running on tests (#141) (fb4456e)
  • internal: fix compat model_dump method when warnings are passed (#138) (91402fd)
  • rebuild project due to codegen change (#136) (b79c1f9)
  • rebuild project due to codegen change (#137) (2899a88)
  • remove now unused cached-property dep (#140) (d001e95)

Documentation

v0.12.0

0.12.0 (2024-11-12)

Full Changelog: v0.11.0...v0.12.0

Features

Bug Fixes

  • GitHub Terraform: Create/Update .github/workflows/stale.yaml [skip ci] (537cc49)

Chores

  • rebuild project due to codegen change (#130) (e08a00f)
  • rebuild project due to codegen change (#131) (8a3c31d)
  • rebuild project due to codegen change (#132) (8287ed4)
Changelog

Sourced from groq's changelog.

0.13.0 (2024-11-28)

Full Changelog: v0.12.0...v0.13.0

Features

Bug Fixes

  • client: compat with new httpx 0.28.0 release (#142) (b8abf89)

Chores

  • internal: exclude mypy from running on tests (#141) (fb4456e)
  • internal: fix compat model_dump method when warnings are passed (#138) (91402fd)
  • rebuild project due to codegen change (#136) (b79c1f9)
  • rebuild project due to codegen change (#137) (2899a88)
  • remove now unused cached-property dep (#140) (d001e95)

Documentation

0.12.0 (2024-11-12)

Full Changelog: v0.11.0...v0.12.0

Features

Bug Fixes

  • GitHub Terraform: Create/Update .github/workflows/stale.yaml [skip ci] (537cc49)

Chores

  • rebuild project due to codegen change (#130) (e08a00f)
  • rebuild project due to codegen change (#131) (8a3c31d)
  • rebuild project due to codegen change (#132) (8287ed4)
Commits

Updates cohere from 5.11.4 to 5.12.0

Updates cerebras-cloud-sdk from 1.12.1 to 1.12.2

Changelog

Sourced from cerebras-cloud-sdk's changelog.

Changelog

Commits

Updates fireworks-ai from 0.15.8 to 0.15.9

Updates writer-sdk from 1.4.0 to 1.5.0

Release notes

Sourced from writer-sdk's releases.

v1.5.0

1.5.0 (2024-11-28)

Full Changelog: v1.4.0...v1.5.0

Features

Bug Fixes

  • client: compat with new httpx 0.28.0 release (#126) (4c04e11)

Chores

  • fix formatting (c33a293)
  • internal: codegen related update (#125) (a72d9d9)
  • internal: fix compat model_dump method when warnings are passed (#121) (51a4ae5)
  • remove now unused cached-property dep (#124) (96715e2)

Documentation

Changelog

Sourced from writer-sdk's changelog.

1.5.0 (2024-11-28)

Full Changelog: v1.4.0...v1.5.0

Features

Description has been truncated

Bumps the poetry group with 18 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [openai](https://github.com/openai/openai-python) | `1.55.0` | `1.55.3` |
| [pydantic](https://github.com/pydantic/pydantic) | `2.10.1` | `2.10.2` |
| [typer](https://github.com/fastapi/typer) | `0.13.1` | `0.14.0` |
| [aiohttp](https://github.com/aio-libs/aiohttp) | `3.11.7` | `3.11.8` |
| [jiter](https://github.com/pydantic/jiter) | `0.6.1` | `0.8.0` |
| [litellm](https://github.com/BerriAI/litellm) | `1.52.14` | `1.53.1` |
| [anthropic](https://github.com/anthropics/anthropic-sdk-python) | `0.37.1` | `0.40.0` |
| [groq](https://github.com/groq/groq-python) | `0.11.0` | `0.13.0` |
| cohere | `5.11.4` | `5.12.0` |
| [cerebras-cloud-sdk](https://github.com/Cerebras/cerebras-cloud-sdk-python) | `1.12.1` | `1.12.2` |
| [fireworks-ai](https://fireworks.ai) | `0.15.8` | `0.15.9` |
| [writer-sdk](https://github.com/writer/writer-python) | `1.4.0` | `1.5.0` |
| [coverage](https://github.com/nedbat/coveragepy) | `7.6.7` | `7.6.8` |
| [pyright](https://github.com/RobertCraigie/pyright-python) | `1.1.386` | `1.1.389` |
| [mkdocs-material](https://github.com/squidfunk/mkdocs-material) | `9.5.45` | `9.5.46` |
| [mkdocstrings](https://github.com/mkdocstrings/mkdocstrings) | `0.26.2` | `0.27.0` |
| [pytest-examples](https://github.com/pydantic/pytest-examples) | `0.0.13` | `0.0.15` |
| [ruff](https://github.com/astral-sh/ruff) | `0.7.1` | `0.8.1` |



Updates `openai` from 1.55.0 to 1.55.3
- [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.55.0...v1.55.3)

Updates `pydantic` from 2.10.1 to 2.10.2
- [Release notes](https://github.com/pydantic/pydantic/releases)
- [Changelog](https://github.com/pydantic/pydantic/blob/main/HISTORY.md)
- [Commits](pydantic/pydantic@v2.10.1...v2.10.2)

Updates `typer` from 0.13.1 to 0.14.0
- [Release notes](https://github.com/fastapi/typer/releases)
- [Changelog](https://github.com/fastapi/typer/blob/master/docs/release-notes.md)
- [Commits](fastapi/typer@0.13.1...0.14.0)

Updates `aiohttp` from 3.11.7 to 3.11.8
- [Release notes](https://github.com/aio-libs/aiohttp/releases)
- [Changelog](https://github.com/aio-libs/aiohttp/blob/master/CHANGES.rst)
- [Commits](aio-libs/aiohttp@v3.11.7...v3.11.8)

Updates `jiter` from 0.6.1 to 0.8.0
- [Release notes](https://github.com/pydantic/jiter/releases)
- [Commits](pydantic/jiter@v0.6.1...v0.8.0)

Updates `litellm` from 1.52.14 to 1.53.1
- [Release notes](https://github.com/BerriAI/litellm/releases)
- [Commits](BerriAI/litellm@v1.52.14...v1.53.1)

Updates `anthropic` from 0.37.1 to 0.40.0
- [Release notes](https://github.com/anthropics/anthropic-sdk-python/releases)
- [Changelog](https://github.com/anthropics/anthropic-sdk-python/blob/main/CHANGELOG.md)
- [Commits](anthropics/anthropic-sdk-python@v0.37.1...v0.40.0)

Updates `groq` from 0.11.0 to 0.13.0
- [Release notes](https://github.com/groq/groq-python/releases)
- [Changelog](https://github.com/groq/groq-python/blob/main/CHANGELOG.md)
- [Commits](groq/groq-python@v0.11.0...v0.13.0)

Updates `cohere` from 5.11.4 to 5.12.0

Updates `cerebras-cloud-sdk` from 1.12.1 to 1.12.2
- [Changelog](https://github.com/Cerebras/cerebras-cloud-sdk-python/blob/main/CHANGELOG.md)
- [Commits](https://github.com/Cerebras/cerebras-cloud-sdk-python/commits)

Updates `fireworks-ai` from 0.15.8 to 0.15.9

Updates `writer-sdk` from 1.4.0 to 1.5.0
- [Release notes](https://github.com/writer/writer-python/releases)
- [Changelog](https://github.com/writer/writer-python/blob/main/CHANGELOG.md)
- [Commits](writer/writer-python@v1.4.0...v1.5.0)

Updates `coverage` from 7.6.7 to 7.6.8
- [Release notes](https://github.com/nedbat/coveragepy/releases)
- [Changelog](https://github.com/nedbat/coveragepy/blob/master/CHANGES.rst)
- [Commits](nedbat/coveragepy@7.6.7...7.6.8)

Updates `pyright` from 1.1.386 to 1.1.389
- [Release notes](https://github.com/RobertCraigie/pyright-python/releases)
- [Commits](RobertCraigie/pyright-python@v1.1.386...v1.1.389)

Updates `mkdocs-material` from 9.5.45 to 9.5.46
- [Release notes](https://github.com/squidfunk/mkdocs-material/releases)
- [Changelog](https://github.com/squidfunk/mkdocs-material/blob/master/CHANGELOG)
- [Commits](squidfunk/mkdocs-material@9.5.45...9.5.46)

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

Updates `pytest-examples` from 0.0.13 to 0.0.15
- [Release notes](https://github.com/pydantic/pytest-examples/releases)
- [Commits](pydantic/pytest-examples@v0.0.13...v0.0.15)

Updates `ruff` from 0.7.1 to 0.8.1
- [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.7.1...0.8.1)

---
updated-dependencies:
- dependency-name: openai
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: poetry
- dependency-name: pydantic
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: poetry
- dependency-name: typer
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: poetry
- dependency-name: aiohttp
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: poetry
- dependency-name: jiter
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: poetry
- dependency-name: litellm
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: poetry
- dependency-name: anthropic
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: poetry
- dependency-name: groq
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: poetry
- dependency-name: cohere
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: poetry
- dependency-name: cerebras-cloud-sdk
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: poetry
- dependency-name: fireworks-ai
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: poetry
- dependency-name: writer-sdk
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: poetry
- dependency-name: coverage
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: poetry
- dependency-name: pyright
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: poetry
- dependency-name: mkdocs-material
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: poetry
- dependency-name: mkdocstrings
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: poetry
- dependency-name: pytest-examples
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: poetry
- dependency-name: ruff
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: poetry
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Nov 29, 2024
Copy link

Deploying instructor-py with  Cloudflare Pages  Cloudflare Pages

Latest commit: e40a61a
Status: ✅  Deploy successful!
Preview URL: https://862da4ef.instructor-py.pages.dev
Branch Preview URL: https://dependabot-pip-poetry-48bbbe.instructor-py.pages.dev

View logs

@jxnl jxnl closed this Dec 3, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 3, 2024

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

To ignore these dependencies, configure ignore rules in dependabot.yml

@dependabot dependabot bot deleted the dependabot/pip/poetry-48bbbe77a4 branch December 3, 2024 06:22
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant