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 pip-version-updates group across 1 directory with 22 updates #232

Merged
merged 1 commit into from
Oct 31, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 28, 2024

Bumps the pip-version-updates group with 19 updates in the / directory:

Package From To
pre-commit-hooks 4.6.0 5.0.0
pytest 8.3.2 8.3.3
ruff 0.6.3 0.7.1
safety 3.2.7 3.2.10
cffi 1.17.0 1.17.1
cryptography 43.0.0 43.0.3
debugpy 1.8.5 1.8.7
distlib 0.3.8 0.3.9
identify 2.6.0 2.6.1
importlib-metadata 8.4.0 8.5.0
jupyter-client 8.6.2 8.6.3
mdit-py-plugins 0.4.1 0.4.2
platformdirs 4.2.2 4.3.6
prompt-toolkit 3.0.47 3.0.48
pytz 2024.1 2024.2
pywin32 306 308
rich 13.8.0 13.9.3
virtualenv 20.26.3 20.27.0
zipp 3.20.1 3.20.2

Updates pre-commit-hooks from 4.6.0 to 5.0.0

Release notes

Sourced from pre-commit-hooks's releases.

pre-commit-hooks v5.0.0

Features

Fixes

  • destroyed-symlinks: set stages to [pre-commit, pre-push, manual]

Migrating

  • pre-commit-hooks now requires pre-commit>=3.2.0.
  • use non-deprecated names for stages.
Changelog

Sourced from pre-commit-hooks's changelog.

5.0.0 - 2024-10-05

Features

Fixes

  • destroyed-symlinks: set stages to [pre-commit, pre-push, manual]

Migrating

  • pre-commit-hooks now requires pre-commit>=3.2.0.
  • use non-deprecated names for stages.
Commits
  • cef0300 v5.0.0
  • f47ab2f Merge pull request #1049 from Jeffrey-Lim/main
  • fd01124 Extend check for illegal Windows filenames
  • 515e8b3 Merge pull request #1085 from AdrianDC/destroyed-symlinks
  • c7d1e85 set stages for destroyed-symlinks
  • 5b5b46d Merge pull request #1093 from pre-commit/non-deprecated-stages-names
  • 003dfa5 update stages names to the non-deprecated names
  • ed71474 Merge pull request #1088 from pre-commit/pre-commit-ci-update-config
  • 6553d02 remove types-all
  • 6952eeb [pre-commit.ci] pre-commit autoupdate
  • Additional commits viewable in compare view

Updates pytest from 8.3.2 to 8.3.3

Release notes

Sourced from pytest's releases.

8.3.3

pytest 8.3.3 (2024-09-09)

Bug fixes

  • #12446: Avoid calling @property (and other instance descriptors) during fixture discovery -- by asottile{.interpreted-text role="user"}

  • #12659: Fixed the issue of not displaying assertion failure differences when using the parameter --import-mode=importlib in pytest>=8.1.

  • #12667: Fixed a regression where type change in [ExceptionInfo.errisinstance]{.title-ref} caused [mypy]{.title-ref} to fail.

  • #12744: Fixed typing compatibility with Python 3.9 or less -- replaced [typing.Self]{.title-ref} with [typing_extensions.Self]{.title-ref} -- by Avasam{.interpreted-text role="user"}

  • #12745: Fixed an issue with backslashes being incorrectly converted in nodeid paths on Windows, ensuring consistent path handling across environments.

  • #6682: Fixed bug where the verbosity levels where not being respected when printing the "msg" part of failed assertion (as in assert condition, msg).

  • #9422: Fix bug where disabling the terminal plugin via -p no:terminal would cause crashes related to missing the verbose option.

    -- by GTowers1{.interpreted-text role="user"}

Improved documentation

  • #12663: Clarify that the [pytest_deselected]{.title-ref} hook should be called from [pytest_collection_modifyitems]{.title-ref} hook implementations when items are deselected.
  • #12678: Remove erroneous quotes from [tmp_path_retention_policy]{.title-ref} example in docs.

Miscellaneous internal changes

  • #12769: Fix typos discovered by codespell and add codespell to pre-commit hooks.
Commits

Updates ruff from 0.6.3 to 0.7.1

Release notes

Sourced from ruff's releases.

0.7.1

Release Notes

Preview features

  • Fix E221 and E222 to flag missing or extra whitespace around == operator (#13890)
  • Formatter: Alternate quotes for strings inside f-strings in preview (#13860)
  • Formatter: Join implicit concatenated strings when they fit on a line (#13663)
  • [pylint] Restrict iteration-over-set to only work on sets of literals (PLC0208) (#13731)

Rule changes

  • [flake8-type-checking] Support auto-quoting when annotations contain quotes (#11811)

Server

  • Avoid indexing the workspace for single-file mode (#13770)

Bug fixes

  • Make ARG002 compatible with EM101 when raising NotImplementedError (#13714)

Other changes

  • Introduce more Docker tags for Ruff (similar to uv) (#13274)

Contributors

Install ruff 0.7.1

Install prebuilt binaries via shell script

... (truncated)

Changelog

Sourced from ruff's changelog.

0.7.1

Preview features

  • Fix E221 and E222 to flag missing or extra whitespace around == operator (#13890)
  • Formatter: Alternate quotes for strings inside f-strings in preview (#13860)
  • Formatter: Join implicit concatenated strings when they fit on a line (#13663)
  • [pylint] Restrict iteration-over-set to only work on sets of literals (PLC0208) (#13731)

Rule changes

  • [flake8-type-checking] Support auto-quoting when annotations contain quotes (#11811)

Server

  • Avoid indexing the workspace for single-file mode (#13770)

Bug fixes

  • Make ARG002 compatible with EM101 when raising NotImplementedError (#13714)

Other changes

  • Introduce more Docker tags for Ruff (similar to uv) (#13274)

0.7.0

Check out the blog post for a migration guide and overview of the changes!

Breaking changes

  • The pytest rules PT001 and PT023 now default to omitting the decorator parentheses when there are no arguments (#12838, #13292). This was a change that we attempted to make in Ruff v0.6.0, but only partially made due to an error on our part. See the blog post for more details.
  • The useless-try-except rule (in our tryceratops category) has been recoded from TRY302 to TRY203 (#13502). This ensures Ruff's code is consistent with the same rule in the tryceratops linter.
  • The lint.allow-unused-imports setting has been removed (#13677). Use lint.pyflakes.allow-unused-imports instead.

Formatter preview style

  • Normalize implicit concatenated f-string quotes per part (#13539)

Preview linter features

  • [refurb] implement hardcoded-string-charset (FURB156) (#13530)
  • [refurb] Count codepoints not bytes for slice-to-remove-prefix-or-suffix (FURB188) (#13631)

... (truncated)

Commits
  • 337af83 Bump version to 0.7.1 (#13913)
  • 113ce84 Fix normalize arguments when fstring_formatting is disabled (#13910)
  • 7272f83 Fix preview style name in can_omit_parentheses to is_f_string_formatting_en...
  • 3eb4546 [red-knot] Format mdtest Python snippets more concisely (#13905)
  • 77ae0cc [red-knot] Infer subscript expression types for bytes literals (#13901)
  • 73ee72b Join implicit concatenated strings when they fit on a line (#13663)
  • e402e27 Use referencial equality in traversal helper methods (#13895)
  • de4181d Remove "default" remark from ruff check (#13900)
  • 2c57c2d [red-knot] Type narrowing for isinstance checks (#13894)
  • 72c18c8 Fix E221 and E222 to flag missing or extra whitespace around == operator (#...
  • Additional commits viewable in compare view

Updates safety from 3.2.7 to 3.2.10

Changelog

Sourced from safety's changelog.

[3.2.10] - 2024-10-25

  • Support for scanning pyproject.toml files (#625)
  • Update safety-schemas version used (#624)
  • Fix basic poloicy test (#622)

[3.2.9] - 2024-10-23

  • chore: deprection-message-for-license-command (4149b70)
  • feat: add-pull-request-template (#604) (61b2fe2)
  • fix: devcontainer fix (be42d8e)
  • fix: safety error when scan is run without being authed (5ec80dd)
  • feat: add-devcontainers-support (0591838)
  • fix: internal-server-error (04d7efb)
  • fix: clarify-vulnerabilities-found/ Fixed the issue where the vulnerabilities (07bc5b7)
  • chore: added check arg depreciation warning (78109e5)
  • feature: release-script: add release script (#602) (cc49542)

[3.2.8] - 2024-09-27

  • feat: enhance version comparison logic for check-updates command (#605)
  • docs: add demo Jupyter Notebook (#601)
  • feat: add script to generate CONTRIBUTORS.md with Shields.io badges based on merged PRs (#600)
  • chore: fix CLI help text by removing rich formatting for cleaner output (#599)
  • chore: hide system scan from help text (#598)
  • chore: add LICENSES.md file to document dependency licenses (#597)
  • docs: add SECURITY.md file with security policy and bug bounty details (#593)
Commits
  • 9ee0b67 chore/release-3.2.10 (#626)
  • d8095a7 feature/pyproject-support (#625)
  • 8d610ff chore/update-safety-schemas-version (#624)
  • d77fec0 Merge pull request #617 from pyupio/chore/release-3.2.9
  • 2d6631c chore/release-3.2.9
  • 57023e0 Merge pull request #622 from pyupio/fix-new-parse-for-test
  • 5a8c181 fix: basic policy file test
  • 7b21f3a Merge pull request #616 from pyupio/fix/version-test
  • ba929db fix/removes hardcoded safety release version from
  • 212318c Merge pull request #614 from pyupio/chore/deprecation-message-for-license-com...
  • Additional commits viewable in compare view

Updates cffi from 1.17.0 to 1.17.1

Release notes

Sourced from cffi's releases.

v1.17.1

  • Fix failing distutils.msvc9compiler imports under Windows (#118).
  • ffibuilder.emit_python_code() and ffibuiler.emit_c_code() accept file-like objects (#115).
  • ffiplatform calls are bypassed by ffibuilder.emit_python_code() and ffibuilder.emit_c_code() (#81).

Full Changelog: python-cffi/cffi@v1.17.0...v1.17.1

Commits
  • 38bd6be release 1.17.1
  • ba10180 update whatsnew.rst for 1.17.1 (#121)
  • 61deb5f add yet another flag to recompile() to avoid calling ffiplatform (#81)
  • 1c292c1 Handle distutils without distutils.msvc9compiler.MSVCCompiler class (#118)
  • 182ffc4 Allow writing generated code to a file-like object. (#115)
  • See full diff in compare view

Updates cryptography from 43.0.0 to 43.0.3

Changelog

Sourced from cryptography's changelog.

43.0.3 - 2024-10-18


* Fixed release metadata for ``cryptography-vectors``

.. _v43-0-2:

43.0.2 - 2024-10-18

  • Fixed compilation when using LibreSSL 4.0.0.

.. _v43-0-1:

43.0.1 - 2024-09-03


* Updated Windows, macOS, and Linux wheels to be compiled with OpenSSL 3.3.2.

.. _v43-0-0:

Commits

Updates debugpy from 1.8.5 to 1.8.7

Release notes

Sourced from debugpy's releases.

debugpy v1.8.7

Support for 3.13

Fixes microsoft/debugpy#1689

debugpy v1.8.6

Consuming PyDev.Debugger's sys.monitoring support to improve performance of debugging 3.12

Fixes microsoft/debugpy#1496

Making attach work for 3.12

Fixes microsoft/debugpy#1476

Commits

Updates distlib from 0.3.8 to 0.3.9

Changelog

Sourced from distlib's changelog.

0.3.9


Released: 2024-10-09
  • scripts

    • Merge #215: preload script wrappers on Windows to assist with a pip issue (thanks, Paul Moore).

    • Fix #220: Remove duplicated newline in shebang of windows launcher (thanks. A2uria).

    • Fix #230: Add handling for cross-compilation environments (thanks, Russell Keith-Magee).

  • util

    • Fix #224: Do not use the absolute path to cache wheel extensions (thanks, Stewart Miles).
  • wheel

    • Fix #222: Support mounting wheels that use extensions without an EXTENSIONS file (thanks, Stewart Miles).

    • Fix #225: Add support for wheel compatibility with the limited API (thanks, Stewart Miles).

Commits
  • fab584e Changes for 0.3.9.
  • 148fa95 Remove duplicated newline in shebang of windows launcher (#221)
  • d1f40d6 Fix whitespace at end of file.
  • 2c4d2fa Add support for wheel compatibility with the limited API. (#228)
  • fac84c7 Do not use the absolute path to cache wheel extensions. (#226)
  • 6fbadf1 Add wheel with a C extension to test mounting (#229)
  • a16423f Add handling for cross-compilation environments. (#231)
  • cbd4ae1 Upgrade codecov workflow to v4 (#232)
  • 5235013 Ignore .vscode project files. (#223)
  • 888c48b Preload script wrappers at import time (#215)
  • Additional commits viewable in compare view

Updates identify from 2.6.0 to 2.6.1

Commits
  • d1032c9 v2.6.1
  • b980f11 Merge pull request #476 from AleksaC/astro
  • 52ba50e Merge pull request #477 from pre-commit/pre-commit-ci-update-config
  • f4ca44e [pre-commit.ci] pre-commit autoupdate
  • 2573941 add astro extension
  • eca58eb Merge pull request #475 from pre-commit/pre-commit-ci-update-config
  • 4cbbd37 [pre-commit.ci] pre-commit autoupdate
  • bcde20e Merge pull request #472 from pre-commit/pre-commit-ci-update-config
  • 53d2329 [pre-commit.ci] pre-commit autoupdate
  • 1d48177 Merge pull request #471 from pre-commit/pre-commit-ci-update-config
  • Additional commits viewable in compare view

Updates importlib-metadata from 8.4.0 to 8.5.0

Changelog

Sourced from importlib-metadata's changelog.

v8.5.0

Features

  • Deferred import of zipfile.Path (#502)
  • Deferred import of json (#503)
  • Rely on zipp overlay for zipfile.Path.
Commits
  • b34810b Finalize
  • 8c1d1fa Merge pull request #501 from Avasam/Pass-mypy-and-link-issues
  • afa39e8 Back out changes to tests._path
  • 8b909f9 Merge pull request #503 from danielhollas/defer-json
  • 2a3f50d Add news fragment.
  • 3f78dc1 Add comment to protect the deferred import.
  • 18eb2da Revert "Defer platform import"
  • 58832f2 Merge pull request #502 from danielhollas/defer-zipp
  • e3ce33b Add news fragment.
  • d11b67f Add comment to protect the deferred import.
  • Additional commits viewable in compare view

Updates jupyter-client from 8.6.2 to 8.6.3

Release notes

Sourced from jupyter-client's releases.

v8.6.3

8.6.3

(Full Changelog)

Enhancements made

Bugs fixed

Maintenance and upkeep improvements

Contributors to this release

(GitHub contributors page for this release)

@​andife | @​hroncok | @​ianthomas23 | @​juliangilbey | @​minrk

Changelog

Sourced from jupyter-client's changelog.

8.6.3

(Full Changelog)

Enhancements made

Bugs fixed

Maintenance and upkeep improvements

Contributors to this release

(GitHub contributors page for this release)

@​andife | @​hroncok | @​ianthomas23 | @​juliangilbey | @​minrk

Commits

Updates mdit-py-plugins from 0.4.1 to 0.4.2

Release notes

Sourced from mdit-py-plugins's releases.

v0.4.2

What's Changed

New Contributors

Full Changelog: executablebooks/mdit-py-plugins@v0.4.1...v0.4.2

Changelog

Sourced from mdit-py-plugins's changelog.

0.4.2 - 2024-09-09

  • 👌 Improve parsing of nested amsmath

    The previous logic was problematic for amsmath blocks nested in other blocs (such as blockquotes)

    The new parsing code now principally follows the logic in markdown_it/rules_block/fence.py (see also https://spec.commonmark.org/0.30/#fenced-code-blocks), except that:

    1. it allows for a closing tag on the same line as the opening tag, and
    2. it does not allow for an opening tag without closing tag (i.e. no auto-closing)
  • ✨ Add allowed option for inline/block attributes

    The allowed option accepts a list of allowed attribute names. If not None, any attributes not in this list will be removed and placed in the token's meta under the key "insecure_attrs".

Commits

Updates platformdirs from 4.2.2 to 4.3.6

Release notes

Sourced from platformdirs's releases.

4.3.6

What's Changed

Full Changelog: tox-dev/platformdirs@4.3.5...4.3.6

4.3.5

What's Changed

Full Changelog: tox-dev/platformdirs@4.3.4...4.3.5

4.3.4

What's Changed

Full Changelog: tox-dev/platformdirs@4.3.3...4.3.4

4.3.3

What's Changed

New Contributors

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

4.3.2

What's Changed

New Contributors

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

... (truncated)

Commits

Updates prompt-toolkit from 3.0.47 to 3.0.48

Release notes

Sourced from prompt-toolkit's releases.

3.0.48

Fixes:

  • Typing improvements:
    • Add @overload to contrib.regular_languages.compiler.Variables.get.
    • Use Sequence instead of list for words argument in completers.
  • Improve ModalCursorShapeConfig:
    • Display an "underscore" cursor in Vi's "replace single" mode, like "replace" mode.
    • Display an "beam" cursor in Emacs (insert) mode.
Changelog

Sourced from prompt-toolkit's changelog.

3.0.48: 2024-09-25

Fixes:

  • Typing improvements:
    • Add @overload to contrib.regular_languages.compiler.Variables.get.
    • Use Sequence instead of list for words argument in completers.
  • Improve ModalCursorShapeConfig:
    • Display an "underscore" cursor in Vi's "replace single" mode, like "replace" mode.
    • Display an "beam" cursor in Emacs (insert) mode.
Commits

…th 22 updates

Bumps the pip-version-updates group with 19 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [pre-commit-hooks](https://github.com/pre-commit/pre-commit-hooks) | `4.6.0` | `5.0.0` |
| [pytest](https://github.com/pytest-dev/pytest) | `8.3.2` | `8.3.3` |
| [ruff](https://github.com/astral-sh/ruff) | `0.6.3` | `0.7.1` |
| [safety](https://github.com/pyupio/safety) | `3.2.7` | `3.2.10` |
| [cffi](https://github.com/python-cffi/cffi) | `1.17.0` | `1.17.1` |
| [cryptography](https://github.com/pyca/cryptography) | `43.0.0` | `43.0.3` |
| [debugpy](https://github.com/microsoft/debugpy) | `1.8.5` | `1.8.7` |
| [distlib](https://github.com/pypa/distlib) | `0.3.8` | `0.3.9` |
| [identify](https://github.com/pre-commit/identify) | `2.6.0` | `2.6.1` |
| [importlib-metadata](https://github.com/python/importlib_metadata) | `8.4.0` | `8.5.0` |
| [jupyter-client](https://github.com/jupyter/jupyter_client) | `8.6.2` | `8.6.3` |
| [mdit-py-plugins](https://github.com/executablebooks/mdit-py-plugins) | `0.4.1` | `0.4.2` |
| [platformdirs](https://github.com/tox-dev/platformdirs) | `4.2.2` | `4.3.6` |
| [prompt-toolkit](https://github.com/prompt-toolkit/python-prompt-toolkit) | `3.0.47` | `3.0.48` |
| [pytz](https://github.com/stub42/pytz) | `2024.1` | `2024.2` |
| [pywin32](https://github.com/mhammond/pywin32) | `306` | `308` |
| [rich](https://github.com/Textualize/rich) | `13.8.0` | `13.9.3` |
| [virtualenv](https://github.com/pypa/virtualenv) | `20.26.3` | `20.27.0` |
| [zipp](https://github.com/jaraco/zipp) | `3.20.1` | `3.20.2` |



Updates `pre-commit-hooks` from 4.6.0 to 5.0.0
- [Release notes](https://github.com/pre-commit/pre-commit-hooks/releases)
- [Changelog](https://github.com/pre-commit/pre-commit-hooks/blob/main/CHANGELOG.md)
- [Commits](pre-commit/pre-commit-hooks@v4.6.0...v5.0.0)

Updates `pytest` from 8.3.2 to 8.3.3
- [Release notes](https://github.com/pytest-dev/pytest/releases)
- [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst)
- [Commits](pytest-dev/pytest@8.3.2...8.3.3)

Updates `ruff` from 0.6.3 to 0.7.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.6.3...0.7.1)

Updates `safety` from 3.2.7 to 3.2.10
- [Release notes](https://github.com/pyupio/safety/releases)
- [Changelog](https://github.com/pyupio/safety/blob/main/CHANGELOG.md)
- [Commits](pyupio/safety@3.2.7...3.2.10)

Updates `cffi` from 1.17.0 to 1.17.1
- [Release notes](https://github.com/python-cffi/cffi/releases)
- [Commits](python-cffi/cffi@v1.17.0...v1.17.1)

Updates `cryptography` from 43.0.0 to 43.0.3
- [Changelog](https://github.com/pyca/cryptography/blob/main/CHANGELOG.rst)
- [Commits](pyca/cryptography@43.0.0...43.0.3)

Updates `debugpy` from 1.8.5 to 1.8.7
- [Release notes](https://github.com/microsoft/debugpy/releases)
- [Commits](microsoft/debugpy@v1.8.5...v1.8.7)

Updates `distlib` from 0.3.8 to 0.3.9
- [Release notes](https://github.com/pypa/distlib/releases)
- [Changelog](https://github.com/pypa/distlib/blob/master/CHANGES.rst)
- [Commits](pypa/distlib@0.3.8...0.3.9)

Updates `identify` from 2.6.0 to 2.6.1
- [Commits](pre-commit/identify@v2.6.0...v2.6.1)

Updates `importlib-metadata` from 8.4.0 to 8.5.0
- [Release notes](https://github.com/python/importlib_metadata/releases)
- [Changelog](https://github.com/python/importlib_metadata/blob/main/NEWS.rst)
- [Commits](python/importlib_metadata@v8.4.0...v8.5.0)

Updates `jupyter-client` from 8.6.2 to 8.6.3
- [Release notes](https://github.com/jupyter/jupyter_client/releases)
- [Changelog](https://github.com/jupyter/jupyter_client/blob/main/CHANGELOG.md)
- [Commits](jupyter/jupyter_client@v8.6.2...v8.6.3)

Updates `mdit-py-plugins` from 0.4.1 to 0.4.2
- [Release notes](https://github.com/executablebooks/mdit-py-plugins/releases)
- [Changelog](https://github.com/executablebooks/mdit-py-plugins/blob/master/CHANGELOG.md)
- [Commits](executablebooks/mdit-py-plugins@v0.4.1...v0.4.2)

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

Updates `prompt-toolkit` from 3.0.47 to 3.0.48
- [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.47...3.0.48)

Updates `pydantic` from 2.8.2 to 2.5.3
- [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.5.3)

Updates `pydantic-core` from 2.20.1 to 2.14.6
- [Release notes](https://github.com/pydantic/pydantic-core/releases)
- [Commits](pydantic/pydantic-core@v2.20.1...v2.14.6)

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 `pywin32` from 306 to 308
- [Release notes](https://github.com/mhammond/pywin32/releases)
- [Changelog](https://github.com/mhammond/pywin32/blob/main/CHANGES.txt)
- [Commits](https://github.com/mhammond/pywin32/commits)

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

Updates `safety-schemas` from 0.0.5 to 0.0.8
- [Commits](https://github.com/pyupio/safety_schemas/commits)

Updates `virtualenv` from 20.26.3 to 20.27.0
- [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.27.0)

Updates `zipp` from 3.20.1 to 3.20.2
- [Release notes](https://github.com/jaraco/zipp/releases)
- [Changelog](https://github.com/jaraco/zipp/blob/main/NEWS.rst)
- [Commits](jaraco/zipp@v3.20.1...v3.20.2)

---
updated-dependencies:
- dependency-name: pre-commit-hooks
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: pip-version-updates
- dependency-name: pytest
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: pip-version-updates
- dependency-name: ruff
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pip-version-updates
- dependency-name: safety
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: pip-version-updates
- dependency-name: cffi
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: pip-version-updates
- dependency-name: cryptography
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: pip-version-updates
- dependency-name: debugpy
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: pip-version-updates
- dependency-name: distlib
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: pip-version-updates
- dependency-name: identify
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: pip-version-updates
- dependency-name: importlib-metadata
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: pip-version-updates
- dependency-name: jupyter-client
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: pip-version-updates
- dependency-name: mdit-py-plugins
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: pip-version-updates
- dependency-name: platformdirs
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: pip-version-updates
- dependency-name: prompt-toolkit
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: pip-version-updates
- dependency-name: pydantic
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: pip-version-updates
- dependency-name: pydantic-core
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: pip-version-updates
- dependency-name: pytz
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: pip-version-updates
- dependency-name: pywin32
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: pip-version-updates
- dependency-name: rich
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: pip-version-updates
- dependency-name: safety-schemas
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: pip-version-updates
- dependency-name: virtualenv
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: pip-version-updates
- dependency-name: zipp
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: pip-version-updates
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Oct 28, 2024
@bruno-fs bruno-fs merged commit 8b8fbaa into main Oct 31, 2024
12 checks passed
@bruno-fs bruno-fs deleted the dependabot/pip/pip-version-updates-5c1a8dce8b branch October 31, 2024 13:01
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.

1 participant