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 dev-dependencies group across 1 directory with 19 updates #627

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the dev-dependencies group with 19 updates in the / directory:

Package From To
fastapi 0.113.0 0.114.0
filelock 3.15.4 3.16.0
intake 0.6.4 2.0.7
ipython 8.18.0 8.27.0
numpy 1.26.4 2.1.1
pipdeptree 2.23.1 2.23.3
platformdirs 4.2.2 4.3.2
prompt-toolkit 3.0.36 3.0.47
pydantic-core 2.23.2 2.23.3
pydantic-numpy 5.0.2 6.0.0
rich 13.7.1 13.8.0
starlette 0.38.4 0.38.5
tox 3.28.0 4.18.1
typer 0.12.4 0.12.5
types-requests 2.32.0.20240905 2.32.0.20240907
uvloop 0.19.0 0.20.0
virtualenv 20.26.3 20.26.4
yarl 1.9.11 1.11.0
zict 2.2.0 3.0.0

Updates fastapi from 0.113.0 to 0.114.0

Release notes

Sourced from fastapi's releases.

0.114.0

You can restrict form fields to only include those declared in a Pydantic model and forbid any extra field sent in the request using Pydantic's model_config = {"extra": "forbid"}:

from typing import Annotated
from fastapi import FastAPI, Form
from pydantic import BaseModel
app = FastAPI()
class FormData(BaseModel):
username: str
password: str
model_config = {"extra": "forbid"}
@​app.post("/login/")
async def login(data: Annotated[FormData, Form()]):
return data

Read the new docs: Form Models - Forbid Extra Form Fields.

Features

  • ✨ Add support for forbidding extra form fields with Pydantic models. PR #12134 by @​tiangolo.

Docs

  • 📝 Update docs, Form Models section title, to match config name. PR #12152 by @​tiangolo.

Internal

  • ✅ Update internal tests for latest Pydantic, including CI tweaks to install the latest Pydantic. PR #12147 by @​tiangolo.
Commits
  • bde12fa 🔖 Release version 0.114.0
  • 74842f0 📝 Update release notes
  • e68d8c6 📝 Update release notes
  • 4ff22a0 📝 Update docs, Form Models section title, to match config name (#12152)
  • a11e392 📝 Update release notes
  • 4633b1b ✨ Add support for forbidding extra form fields with Pydantic models (#12134)
  • 1b06b53 📝 Update release notes
  • c411b81 ✅ Update internal tests for latest Pydantic, including CI tweaks to install t...
  • See full diff in compare view

Updates filelock from 3.15.4 to 3.16.0

Release notes

Sourced from filelock's releases.

3.16.0

What's Changed

Full Changelog: tox-dev/filelock@3.15.4...3.16.0

Commits

Updates intake from 0.6.4 to 2.0.7

Commits
  • 5e7b3b8 Merge pull request #845 from jslorrma/fix/sparkdataframe-func-and-deltareader...
  • 9875076 fix: Fix typo in SparkDataFrame and update DeltaReader implements attribute
  • 2d526aa Merge pull request #843 from AlbertDeFusco/feat/llama-server-cache-system-pro...
  • 68b0aae cache system prompt file to disk
  • 913687d Merge pull request #841 from AlbertDeFusco/feat/find-free-port
  • eac67cc Merge pull request #840 from AlbertDeFusco/chore/llama.cpp-short-kwargs
  • 6590c9a start llamacppservice on free port
  • 62c3333 supported short-form kwargs
  • 7874ba1 Merge pull request #842 from AlbertDeFusco/chore/setup-miniconda
  • 117105c swap for conda
  • Additional commits viewable in compare view

Updates ipython from 8.18.0 to 8.27.0

Commits
  • 82690a0 release 8.27.0
  • 7af1c01 Whats new 8.27 (#14508)
  • ef9d41e Whats new 8.27
  • 5c8bc51 Fix completion in indented lines dropping prefix when jedi is disabled (#14474)
  • 6bde8f6 Don't force matplotlib backend names to be lowercase (#14475)
  • d5762c1 Fix showing SystemExit exception raise inside except handler (#14503)
  • 82eba44 Fix some tests on Python 3.13 RC1 (#14504)
  • 2e34c77 Autoformat with darker
  • 44bffab Relax string checks in test_pinfo_docstring_dynamic
  • 7ea81cd Fix test_decorator_skip_with_breakpoint() on Python 3.13
  • Additional commits viewable in compare view

Updates numpy from 1.26.4 to 2.1.1

Release notes

Sourced from numpy's releases.

2.1.1 (Sep 3, 2024)

NumPy 2.1.1 Release Notes

NumPy 2.1.1 is a maintenance release that fixes bugs and regressions discovered after the 2.1.0 release.

The Python versions supported by this release are 3.10-3.13.

Contributors

A total of 7 people contributed to this release. People with a "+" by their names contributed a patch for the first time.

  • Andrew Nelson
  • Charles Harris
  • Mateusz Sokół
  • Maximilian Weigand +
  • Nathan Goldbaum
  • Pieter Eendebak
  • Sebastian Berg

Pull requests merged

A total of 10 pull requests were merged for this release.

  • #27236: REL: Prepare for the NumPy 2.1.0 release [wheel build]
  • #27252: MAINT: prepare 2.1.x for further development
  • #27259: BUG: revert unintended change in the return value of set_printoptions
  • #27266: BUG: fix reference counting bug in __array_interface__ implementation...
  • #27267: TST: Add regression test for missing descr in array-interface
  • #27276: BUG: Fix #27256 and #27257
  • #27278: BUG: Fix array_equal for numeric and non-numeric scalar types
  • #27287: MAINT: Update maintenance/2.1.x after the 2.0.2 release
  • #27303: BLD: cp311- macosx_arm64 wheels [wheel build]
  • #27304: BUG: f2py: better handle filtering of public/private subroutines

Checksums

MD5

3053a97400db800b7377749e691eb39e  numpy-2.1.1-cp310-cp310-macosx_10_9_x86_64.whl
84b752a2220dce7c96ff89eef4f4aec3  numpy-2.1.1-cp310-cp310-macosx_11_0_arm64.whl
47ed4f704a64261f07ca24ef2e674524  numpy-2.1.1-cp310-cp310-macosx_14_0_arm64.whl
b8a45caa870aee980c298053cf064d28  numpy-2.1.1-cp310-cp310-macosx_14_0_x86_64.whl
e097ad5eee572b791b4a25eedad6df4a  numpy-2.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
ae502c99315884cda7f0236a07c035c4  numpy-2.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
841a859d975c55090c0b60b72aab93a3  numpy-2.1.1-cp310-cp310-musllinux_1_1_x86_64.whl
d51be2b17f5b87aac64ab80fdfafc85e  numpy-2.1.1-cp310-cp310-musllinux_1_2_aarch64.whl
1f8249bd725397c6233fe6a0e8ad18b1  numpy-2.1.1-cp310-cp310-win32.whl
d38d6f06589c1ec104a6a31ff6035781  numpy-2.1.1-cp310-cp310-win_amd64.whl

... (truncated)

Commits
  • 48606ab Merge pull request #27328 from charris/prepare-2.1.1
  • a7cb4c4 REL: Prepare for the NumPy 2.1.1 release [wheel build]
  • 884c92b Merge pull request #27303 from charris/backport-27284
  • ca7f5c1 Merge pull request #27304 from charris/backport-27049
  • 2a49507 BUG: f2py: better handle filtering of public/private subroutines
  • d4306dd TST: Add regression test for gh-26920
  • db9668d BLD: cp311- macosx_arm64 wheels [wheel build]
  • c6ff254 Merge pull request #27287 from charris/post-2.0.2-release-update
  • 326bc17 MAINT: Update main after the 2.0.2 release
  • 8164b7c Merge pull request #27278 from charris/backport-27275
  • Additional commits viewable in compare view

Updates pipdeptree from 2.23.1 to 2.23.3

Release notes

Sourced from pipdeptree's releases.

2.23.3

Full Changelog: tox-dev/pipdeptree@2.23.2...2.23.3

2.23.2

What's Changed

Full Changelog: tox-dev/pipdeptree@2.23.1...2.23.2

Commits

Updates platformdirs from 4.2.2 to 4.3.2

Release notes

Sourced from platformdirs's releases.

4.3.2

What's Changed

New Contributors

Full Changelog: tox-dev/platformdirs@4.3.1...4.3.2

4.3.1

Full Changelog: tox-dev/platformdirs@4.3.0...4.3.1

4.3.0

What's Changed

New Contributors

Full Changelog: tox-dev/platformdirs@4.2.2...4.3.0

Commits
  • c596271 Fix multi-path returned from _path methods on MacOS (#299)
  • a420284 Use uv as installer (#300)
  • 49a89ef Update README.rst
  • 4851532 Update README.rst
  • 330b272 Ensure PlatformDirs is valid superclass type for mypy AND not an abstract cla...
  • 1ca8592 Bump pypa/gh-action-pypi-publish from 1.9.0 to 1.10.1 (#297)
  • 6ac03f5 [pre-commit.ci] pre-commit autoupdate (#293)
  • 9e539d7 Use include-hidden-files: true to upload coverage artifacts (#298)
  • 6a0ff60 [pre-commit.ci] pre-commit autoupdate (#288)
  • 8f59e91 Test with latest PyPy (#290)
  • Additional commits viewable in compare view

Updates prompt-toolkit from 3.0.36 to 3.0.47

Release notes

Sourced from prompt-toolkit's releases.

3.0.47

New features:

  • Allow passing exception classes for KeyboardInterrupt and EOFError in PromptSession.

Fixes:

  • Compute padding parameters for Box widget lazily.

3.0.46

Fixes:

  • Fix pytest capsys fixture compatibility.

3.0.45

Fixes:

  • Improve performance of GrammarCompleter (faster deduplication of completions).

3.0.44

New features:

  • Accept os.PathLike in FileHistory (typing fix).

Fixes:

  • Fix memory leak in filters.
  • Improve performance of progress bar formatters.
  • Fix compatibility when a SIGINT handler is installed by non-Python (Rust, C).
  • Limit number of completions in buffer to 10k by default (for performance).

3.0.43

Fixes regression from 3.0.42:

  • Fix regression on Pypy: Don't use ctypes.pythonapi to restore SIGINT if not available.

Other changes from 3.0.42:

  • Fix line wrapping in patch_stdout on Windows.
  • Make formatted_text.split_lines() accept an iterable instead of lists only.
  • Disable the IPython workaround (from 3.0.41) for IPython >= 8.18.
  • Restore signal.SIGINT handler between prompts
Changelog

Sourced from prompt-toolkit's changelog.

3.0.47: 2024-06-10

New features:

  • Allow passing exception classes for KeyboardInterrupt and EOFError in PromptSession.

Fixes:

  • Compute padding parameters for Box widget lazily.

3.0.46: 2024-06-04

Fixes:

  • Fix pytest capsys fixture compatibility.

3.0.45: 2024-05-28

Fixes:

  • Improve performance of GrammarCompleter (faster deduplication of completions).

3.0.44: 2024-05-27

New features:

  • Accept os.PathLike in FileHistory (typing fix).

Fixes:

  • Fix memory leak in filters.
  • Improve performance of progress bar formatters.
  • Fix compatibility when a SIGINT handler is installed by non-Python (Rust, C).
  • Limit number of completions in buffer to 10k by default (for performance).

3.0.43: 2023-12-13

Fixes:

  • Fix regression on Pypy: Don't use ctypes.pythonapi to restore SIGINT if not available.

3.0.42: 2023-12-12

Fixes:

... (truncated)

Commits
  • 6695411 Release 3.0.47
  • 67e644b Small simplification in Screen code.
  • 8889675 fix(Examples): address a typo in one of the examples
  • 15f3aec Allow passing exception classes for KeyboardInterrupt and EOFError in PromptS...
  • a04c37d Compute padding parameters for Box widget lazily.
  • 98659af Release 3.0.46
  • 2530c04 Make AppSession compatible with pytest's capsys fixture + docs.
  • 6a58564 Release 3.0.45
  • a21831e Improve performance of GrammarCompleter (faster deduplication of completions).
  • 81dcfda Release 3.0.44.
  • Additional commits viewable in compare view

Updates pydantic-core from 2.23.2 to 2.23.3

Release notes

Sourced from pydantic-core's releases.

v2.23.3 2024-09-07

What's Changed

Packaging

Fixes

New Contributors

Full Changelog: pydantic/pydantic-core@v2.23.2...v2.23.3

Commits

Updates pydantic-numpy from 5.0.2 to 6.0.0

Commits

Updates rich from 13.7.1 to 13.8.0

Release notes

Sourced from rich's releases.

The Thanks for your patience Release

This is a fairly large update. Mostly an accumulation of small fixes and enhancements. Nothing qualifies as a *breaking change (for some definition), but there may be some subtly changes to output. Check below for anything that might affect you!

[13.8.0] - 2024-08-26

Fixed

Changed

  • RichHandler errors and warnings will now use different colors (red and yellow) Textualize/rich#2825
  • Removed the empty line printed in jupyter while using Progress Textualize/rich#2616
  • Running tests in environment with FORCE_COLOR or NO_COLOR environment variables
  • ansi decoder will now strip problematic private escape sequences (like \x1b7) Textualize/rich#3278
  • Tree's ASCII_GUIDES and TREE_GUIDES constants promoted to class attributes

Added

  • Adds a case_sensitive parameter to prompt.Prompt. This determines if the response is treated as case-sensitive. Defaults to True.
  • Added Console.on_broken_pipe Textualize/rich#3468
Changelog

Sourced from rich's changelog.

[13.8.0] - 2024-08-26

Fixed

Changed

  • RichHandler errors and warnings will now use different colors (red and yellow) Textualize/rich#2825
  • Removed the empty line printed in jupyter while using Progress Textualize/rich#2616
  • Running tests in environment with FORCE_COLOR or NO_COLOR environment variables
  • ansi decoder will now strip problematic private escape sequences (like \x1b7) Textualize/rich#3278
  • Tree's ASCII_GUIDES and TREE_GUIDES constants promoted to class attributes

Added

  • Adds a case_sensitive parameter to prompt.Prompt. This determines if the response is treated as case-sensitive. Defaults to True.
  • Added Console.on_broken_pipe Textualize/rich#3468
Commits

Updates starlette from 0.38.4 to 0.38.5

Release notes

Sourced from starlette's releases.

Version 0.38.5

Fixed

  • Schedule BackgroundTasks from within BaseHTTPMiddleware #2688. This behavior was removed in 0.38.3, and is now restored.

Full Changelog: encode/starlette@0.38.4...0.38.5

Changelog

Sourced from starlette's changelog.

0.38.5 (September 7, 2024)

Fixed

  • Schedule BackgroundTasks from within BaseHTTPMiddleware #2688. This behavior was removed in 0.38.3, and is now restored.
Commits

Updates tox from 3.28.0 to 4.18.1

Release notes

Sourced from tox's releases.

4.18.1

What's Changed

New Contributors

Full Changelog: tox-dev/tox@4.18.0...4.18.1

4.18.0

What's Changed

Full Changelog: tox-dev/tox@4.17.1...4.18.0

4.17.1

What's Changed

New Contributors

Full Changelog: tox-dev/tox@4.17.0...4.17.1

4.17.0

What's Changed

New Contributors

... (truncated)

Changelog

Sourced from tox's changelog.

v4.18.1 (2024-09-07)

Bugfixes - 4.18.1

- Fix and test the string spec for the ``sys.executable`` interpreter (introduced in :pull:`3325`)
  - by :user:`hroncok` (:issue:`3327`)

Improved Documentation - 4.18.1

  • Changes the tox_env_teardown docstring to explain the hook is called after a tox env was teared down. (:issue:3305)

v4.18.0 (2024-08-13)

Features - 4.18.0

- Suppress spinner in parallel runs in CI - by :user:`ziima`. (:issue:`3318`)

Bugfixes - 4.18.0

  • Boost temporary directories cleanup in tests - by :user:ziima. (:issue:3278)
  • Fix absolute base python paths conflicting - by :user:gaborbernat. (:issue:3325)

v4.17.1 (2024-08-07)

Bugfixes - 4.17.1

- Support for running ``-e <major>.<minor>`` has been lost, fixing it - by :user:`gaborbernat`. (:issue:`2849`)
- ``base_python`` now accepts absolute paths to interpreter executable - by :user:`paveldikov`. (:issue:`3191`)

v4.17.0 (2024-08-05)

Features - 4.17.0

  • Add graalpy prefix as a supported base python (:issue:3312)
  • Add :ref:on_platform core configuration holding the tox platform and do not install package when exec an environment
    • by :user:gaborbernat. (:issue:3315)

Bugfixes - 4.17.0

- Add table with default environment variables per OS (:issue:`2753`)

v4.16.0 (2024-07-02)

Bugfixes - 4.16.0

... (truncated)

Commits

Updates typer from 0.12.4 to 0.12.5

Release notes

Sourced from typer's releases.

0.12.5

Features

  • 💄 Unify the width of the Rich console for help and errors. PR #788 by @​racinmat.
  • 🚸 Improve assertion error message if a group is not a valid subclass. PR #425 by @​chrisburr.

Fixes

Refactors

Docs

Internal

@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Sep 9, 2024
Bumps the dev-dependencies group with 19 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [fastapi](https://github.com/fastapi/fastapi) | `0.113.0` | `0.114.0` |
| [filelock](https://github.com/tox-dev/py-filelock) | `3.15.4` | `3.16.0` |
| [intake](https://github.com/intake/intake) | `0.6.4` | `2.0.7` |
| [ipython](https://github.com/ipython/ipython) | `8.18.0` | `8.27.0` |
| [numpy](https://github.com/numpy/numpy) | `1.26.4` | `2.1.1` |
| [pipdeptree](https://github.com/tox-dev/pipdeptree) | `2.23.1` | `2.23.3` |
| [platformdirs](https://github.com/platformdirs/platformdirs) | `4.2.2` | `4.3.2` |
| [prompt-toolkit](https://github.com/prompt-toolkit/python-prompt-toolkit) | `3.0.36` | `3.0.47` |
| [pydantic-core](https://github.com/pydantic/pydantic-core) | `2.23.2` | `2.23.3` |
| [pydantic-numpy](https://github.com/caniko/pydantic-numpy) | `5.0.2` | `6.0.0` |
| [rich](https://github.com/Textualize/rich) | `13.7.1` | `13.8.0` |
| [starlette](https://github.com/encode/starlette) | `0.38.4` | `0.38.5` |
| [tox](https://github.com/tox-dev/tox) | `3.28.0` | `4.18.1` |
| [typer](https://github.com/fastapi/typer) | `0.12.4` | `0.12.5` |
| [types-requests](https://github.com/python/typeshed) | `2.32.0.20240905` | `2.32.0.20240907` |
| [uvloop](https://github.com/MagicStack/uvloop) | `0.19.0` | `0.20.0` |
| [virtualenv](https://github.com/pypa/virtualenv) | `20.26.3` | `20.26.4` |
| [yarl](https://github.com/aio-libs/yarl) | `1.9.11` | `1.11.0` |
| [zict](http://zict.readthedocs.io/en/latest/) | `2.2.0` | `3.0.0` |



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

Updates `filelock` from 3.15.4 to 3.16.0
- [Release notes](https://github.com/tox-dev/py-filelock/releases)
- [Changelog](https://github.com/tox-dev/filelock/blob/main/docs/changelog.rst)
- [Commits](tox-dev/filelock@3.15.4...3.16.0)

Updates `intake` from 0.6.4 to 2.0.7
- [Commits](intake/intake@0.6.4...2.0.7)

Updates `ipython` from 8.18.0 to 8.27.0
- [Release notes](https://github.com/ipython/ipython/releases)
- [Commits](ipython/ipython@8.18.0...8.27.0)

Updates `numpy` from 1.26.4 to 2.1.1
- [Release notes](https://github.com/numpy/numpy/releases)
- [Changelog](https://github.com/numpy/numpy/blob/main/doc/RELEASE_WALKTHROUGH.rst)
- [Commits](numpy/numpy@v1.26.4...v2.1.1)

Updates `pipdeptree` from 2.23.1 to 2.23.3
- [Release notes](https://github.com/tox-dev/pipdeptree/releases)
- [Commits](tox-dev/pipdeptree@2.23.1...2.23.3)

Updates `platformdirs` from 4.2.2 to 4.3.2
- [Release notes](https://github.com/platformdirs/platformdirs/releases)
- [Changelog](https://github.com/tox-dev/platformdirs/blob/main/CHANGES.rst)
- [Commits](tox-dev/platformdirs@4.2.2...4.3.2)

Updates `prompt-toolkit` from 3.0.36 to 3.0.47
- [Release notes](https://github.com/prompt-toolkit/python-prompt-toolkit/releases)
- [Changelog](https://github.com/prompt-toolkit/python-prompt-toolkit/blob/master/CHANGELOG)
- [Commits](prompt-toolkit/python-prompt-toolkit@3.0.36...3.0.47)

Updates `pydantic-core` from 2.23.2 to 2.23.3
- [Release notes](https://github.com/pydantic/pydantic-core/releases)
- [Commits](pydantic/pydantic-core@v2.23.2...v2.23.3)

Updates `pydantic-numpy` from 5.0.2 to 6.0.0
- [Commits](https://github.com/caniko/pydantic-numpy/commits)

Updates `rich` from 13.7.1 to 13.8.0
- [Release notes](https://github.com/Textualize/rich/releases)
- [Changelog](https://github.com/Textualize/rich/blob/master/CHANGELOG.md)
- [Commits](Textualize/rich@v13.7.1...v13.8.0)

Updates `starlette` from 0.38.4 to 0.38.5
- [Release notes](https://github.com/encode/starlette/releases)
- [Changelog](https://github.com/encode/starlette/blob/master/docs/release-notes.md)
- [Commits](encode/starlette@0.38.4...0.38.5)

Updates `tox` from 3.28.0 to 4.18.1
- [Release notes](https://github.com/tox-dev/tox/releases)
- [Changelog](https://github.com/tox-dev/tox/blob/main/docs/changelog.rst)
- [Commits](tox-dev/tox@3.28.0...4.18.1)

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

Updates `types-requests` from 2.32.0.20240905 to 2.32.0.20240907
- [Commits](https://github.com/python/typeshed/commits)

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 `virtualenv` from 20.26.3 to 20.26.4
- [Release notes](https://github.com/pypa/virtualenv/releases)
- [Changelog](https://github.com/pypa/virtualenv/blob/main/docs/changelog.rst)
- [Commits](pypa/virtualenv@20.26.3...20.26.4)

Updates `yarl` from 1.9.11 to 1.11.0
- [Release notes](https://github.com/aio-libs/yarl/releases)
- [Changelog](https://github.com/aio-libs/yarl/blob/master/CHANGES.rst)
- [Commits](aio-libs/yarl@v1.9.11...v1.11.0)

Updates `zict` from 2.2.0 to 3.0.0

---
updated-dependencies:
- dependency-name: fastapi
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: filelock
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: intake
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: ipython
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: numpy
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: pipdeptree
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: platformdirs
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: prompt-toolkit
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: pydantic-core
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: pydantic-numpy
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: rich
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: starlette
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: tox
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: typer
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: types-requests
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: uvloop
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: virtualenv
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: yarl
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: zict
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/pip/dev-dependencies-12dec937a7 branch from fc0f73f to 8f47fbc Compare September 9, 2024 13:23
Copy link
Contributor Author

dependabot bot commented on behalf of github Sep 16, 2024

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

@dependabot dependabot bot closed this Sep 16, 2024
@dependabot dependabot bot deleted the dependabot/pip/dev-dependencies-12dec937a7 branch September 16, 2024 01:20
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