Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 24, 2025

Updates the requirements on fasteners, freezegun, ijson, libcst, packaging, pex, psutil, pytest, python-lsp-jsonrpc, setproctitle, setuptools, types-freezegun, types-pyyaml, types-requests, types-setuptools, types-toml, typing-extensions, urllib3, debugpy, pydevd-pycharm, fastapi, starlette, strawberry-graphql[fastapi], uvicorn[standard], beautifulsoup4, python-gnupg, pygithub, mypy, strawberry-graphql, pytest-cov and flake8 to permit the latest version.
Updates fasteners from 0.16.3 to 0.20

Release notes

Sourced from fasteners's releases.

Version 0.20

  • InterProcessLock now catches OSError and handles BlockingIOError correctly.
  • Remove support for python 3.8, python 3.9 and pypy 3.9. It should still work, but is no longer tested.
  • Add support for python 3.12, 3.13 and pypy 3.11.

Version 0.19

  • Adds non-context manager methods to inter-thread lock
  • Drops support for python 3.7
  • Adds CI for python 3.11

Version 0.18

  • Reshuffle the process lock code and properly document it.
  • Revamp the docs and switch from sphinx to mkdocs
  • Remove difficult to use tread lock features from docs
  • Bring back support for eventlet spawn_n
  • Remove support for python3.6. It should still work, but is no longer tested.

0.17.3

No release notes provided.

0.17.2

No release notes provided.

0.17.1

No release notes provided.

0.17

No release notes provided.

Changelog

Sourced from fasteners's changelog.

[0.20]

  • InterProcessLock now catches OSError and handles BlockingIOError correctly.
  • Remove support for python 3.8, python 3.9 and pypy 3.9. It should still work, but is no longer tested.
  • Add support for python 3.12, 3.13 and pypy 3.11.

[0.19]

  • Add .acquire_read_lock, .release_read_lock, .acquire_write_lock, and .release_write_lock methods to the inter thread ReaderWriterLock as was promised in the README.
  • Remove support for python 3.7 and pypy 3.7. It should still work, but is no longer tested.
  • Add support for pypy 3.10 and python 3.11

[0.18]

  • Reshuffle the process lock code and properly document it.
  • Revamp the docs and switch from sphinx to mkdocs
  • Remove difficult to use tread lock features from docs
  • Bring back support for eventlet spawn_n
  • Remove support for python3.6. It should still work, but is no longer tested.

[0.17.3]:

  • Allow writer to become a reader in thread ReaderWriter lock

[0.17.2]:

  • Remove unnecessary setuptools pin

[0.17.1]:

  • Switch to the modern python package build infrastructure

[0.17]: [NEVER RELEASED]

  • Remove support for python 3.5 and earlier, including 2.7
  • Add support for python 3.9 and 3.10
  • Fix a conflict with django lock
  • Add __version__ and __all__ attributes
  • Fix a failure to parse README as utf-8
  • Move from nosetest to pytest and cleanup testing infrastructure
Commits

Updates freezegun from 1.2.1 to 1.5.5

Changelog

Sourced from freezegun's changelog.

1.5.5

  • Allow parametrized arguments called 'func' (Broken in 1.5.4)

1.5.4

  • Fix: Ability to yield fixtures (broken in 1.5.3)

1.5.3

  • Fix compatibility with pytest 8.4.0 when using fixtures
  • Add (back) class-decorator overload to guarantee Pytype understands it

1.5.2

  • Remove support for Python 3.7
  • Explicitly marks support for Python 3.13
  • Improved project documentation

1.5.1

  • Fix the typing of the tick() method, and improve it's behaviour.

1.5.0

  • The default ignore list now contains the queue-package
  • Added a missing move_to-function when calling freeze_time(tick=True)
  • Fixes a rounding error in time.time_ns()
  • Fixed a bug where the default ignore list could not be empty (configure(default_ignore_list=[]))
  • All tick() methods now return the new datetime (instead of None)
  • Type improvements

1.4.0

  • asyncio-support from 1.3.x introduced quite a few bugs, so that functionality is now hidden behind a flag: with freeze_time('1970-01-02', real_asyncio=True):
  • Added documentation for the real_asyncio parameter in the README.rst file.

1.3.1

  • Fixed the release number in the build

1.3.0

  • Fixed asyncio support to avoid await asyncio.sleep(1) hanging forever.

  • Added support for Python 3.12

... (truncated)

Commits
  • c9bf52c Increase version number
  • 0f2bd7e Merge pull request #582 from spulec/fixture-called-func
  • a608055 Allow parametrized arguments with name 'func'
  • 2bb4711 Increase version number
  • 7599eee Add 1.5.4 release notes
  • 0d00e7d Merge pull request #579 from zsh8/decorate_generator
  • 10c93f2 fix: preserve functionality in pytest yield fixtures
  • d2e0a00 Increase version number
  • 6229e27 Add 1.5.3 release notes
  • 3111775 Merge pull request #576 from spulec/support-fixtures-pytest-840
  • Additional commits viewable in compare view

Updates ijson from 3.2.3 to 3.4.0.post0

Changelog

Sourced from ijson's changelog.

[3.4.0.post0]

  • Post-release to get 3.14 wheels built on published on PyPI.

[3.4.0]

  • Added support for PEP 489 multi-phase initialisation and per-module state for our C extension, allowing us to support sub-interpreters with per-interpreter GIL.
  • Advertise support for free-threading python mode.
  • Removed support for Python < 3.9.
  • Enhanced generators so they yield all possible results to users before errors are raised (#123).
  • Added ijson.ALL_BACKENDS constant listing all supported backends (which might or not be available at runtime).
  • Added a capabilities constant to each backend describing which capabilities it supports.
  • Exposing backend's name under <backend>.backend_name, and default backend's name under ijson.backend_name. This is similar to the already existing name constant, only slightly better named to hopefully avoid confusion.
  • Restructured source code so all code lives under src/, and the ijson.backends._yajl2 extension under src/ijson/backends/ext/_yajl2. This allows C backend tests to actually run on cibuildwheel.
  • Improved performance of parse routine in C backend by ~4%.
  • Fixed several potential stability issues in C backend around correct error handling.
  • Fixed corner-case wrong behaviour of yajl2_c backend, which didn't work correctly with user-provided event names.
  • Pointing to our own fork of yajl (for when we build it ourselves) that contains fixes for all known CVEs (#126).
  • Removed leftover compatibility bits in the C backend.
  • Fixed potential issue with yajl and yajl2 backends where crashes could occur at interpreter shutdown.
  • Removed tox.
  • Moved static project metadata to pyproject.toml.

[3.3.0]

  • Removed support for Python 2.7 and 3.4, 3.5+ is still supported.
  • Distribute the existing benchmark.py script as ijson.benchmark. The module is an improved version of the script, supporting #iterations for a given function invocation, multiple input files, and more.
Commits
  • 6c97a00 Release ijson 3.4.0.post0
  • fbb34c9 Bump pypa/cibuildwheel from 3.1.4 to 3.2.0 (#151)
  • 1652a7e Bump actions/setup-python from 5 to 6 (#149)
  • b17551d Bump pypa/cibuildwheel from 3.1.3 to 3.1.4 (#148)
  • 85a23f8 Use GHA ARM runners for faster ARM builds
  • cd74a27 Mark python 3.14 as supported
  • f62d26c Add fast test against 3.14
  • 500baea README: clarify how to use it with requests lib
  • 4de62c5 Bump actions/checkout from 4 to 5 (#146)
  • fc931cf Bump actions/download-artifact from 4 to 5 (#145)
  • Additional commits viewable in compare view

Updates libcst from 1.4.0 to 1.8.5

Release notes

Sourced from libcst's releases.

v1.8.5

What's Changed

Full Changelog: Instagram/LibCST@v1.8.4...v1.8.5

v1.8.4

What's Changed

New Contributors

Full Changelog: Instagram/LibCST@v1.8.2...v1.8.4

v1.8.2

Fixed

New Contributors

Full Changelog: Instagram/LibCST@v1.8.1...v1.8.2

v1.8.1

Added

Updated

New Contributors

Full Changelog: Instagram/LibCST@v1.8.0...v1.8.1

v1.8.0

Added

... (truncated)

Changelog

Sourced from libcst's changelog.

1.8.5 - 2025-09-25

What's Changed

1.8.4 - 2025-09-09

What's Changed

New Contributors

Full Changelog: Instagram/LibCST@v1.8.2...v1.8.4

1.8.3 - 2025-08-29

What's Changed

New Contributors

Full Changelog: Instagram/LibCST@v1.8.2...v1.8.3

1.8.2 - 2025-06-13

Fixed

New Contributors

Full Changelog: Instagram/LibCST@v1.8.1...v1.8.2

1.8.1 - 2025-06-10

Added

Updated

... (truncated)

Commits

Updates packaging from 24.2 to 25.0

Release notes

Sourced from packaging's releases.

25.0

What's Changed

New Contributors

Full Changelog: pypa/packaging@24.2...25.0

Changelog

Sourced from packaging's changelog.

25.0 - 2025-04-19


* PEP 751: Add support for ``extras`` and ``dependency_groups`` markers. (:issue:`885`)
* PEP 738: Add support for Android platform tags. (:issue:`880`)
Commits
  • f585376 Bump for release
  • 600ecea Add changelog entries
  • 3910129 support 'extras' and 'dependency_groups' markers (#888)
  • 8e49b43 Add support for PEP 738 Android tags (#880)
  • e624d8e Bump the github-actions group with 3 updates (#886)
  • 71f38d8 Bump the github-actions group with 2 updates (#878)
  • 9b4922d Bump the github-actions group with 3 updates (#870)
  • 8510bd9 Upgrade to ruff 0.9.1 (#865)
  • 9375ec2 Re-add tests for Unicode file name parsing (#863)
  • 2256ed4 Bump the github-actions group across 1 directory with 2 updates (#864)
  • Additional commits viewable in compare view

Updates pex from 2.61.1 to 2.63.0

Release notes

Sourced from pex's releases.

pex 2.63.0


2.63.0

This release adds population of a pex script to venvs created with pex3 venv create. This allows for executing Python in the activated venv via /path/to/venv/pex ... instead of source /path/to/venv/bin/activate && python ....

  • Include pex script in pex3 venv create. (#2960)

file sha256 size
pex 892506ede647adfabbd9831048208ddbabf2b6a5ee848c44bf4fb76de4187b26 4923031
pex-linux-aarch64 8d5c047d9ee6bc2d9f16595315d27237375718dba1f802d5ad35beab59292f73 33599660
pex-linux-armv7l 15bfbc427d05408a7a380c4456bd4753cebfe0c12778b17e5c511998b57e23ec 30433237
pex-linux-riscv64 f92d23b7aa245f2c776214712302c08edac687b9474d76f7334177ca8e7f70bc 30627573
pex-linux-x86_64 63a8a7517e9edd7c51d78426e197ab6efb4cb4a2ca33825b558d851a0f349dec 39772962
pex-macos-aarch64 a5feb918f64966bb21ff86d156c7755cf39f63c73cde469f26da6a6be1b0b692 22639258
pex-macos-x86_64 57d5d6d175a636de9ddd8367272fd4d38496d5732186ba1b67cfd5abfebbde61 23136978

pex 2.62.1


2.62.1

This release improves performance when creating venvs by eliminating an un-necessary re-hash of wheel files already installed in the Pex cache.

  • Avoid re-hashing wheels when re-installing. (#2958)

file sha256 size
pex 420ba1acb1c362206d0547ecc7e76b6a2e9d517dd5adcccc9cd92af4fcf85dd2 4922383
pex-linux-aarch64 53998ad60a758fe5b7a967f6a073b6abd889fff815c285a28d4750c761f98927 33599009
pex-linux-armv7l 0eab6d541fc53a70bd715f6738a7dba504f3d4076fa7cb9a9fff8b25aec99a64 30432591
pex-linux-riscv64 b1a28520b60c0a0a1704edce42ca25ce714c63ac24a6d76473db322868d5d166 30626929
pex-linux-x86_64 fba73862756385f53a901ab882f6b59730f3735b58e6036d7c1331df9ec8d7ab 39772324
pex-macos-aarch64 e66bb56d340511eabc5f94863b1d66c774c36c49f61af27516e6bf50b7d0abf0 22638614
pex-macos-x86_64 881be9453ac3e79fcc4e01e6ebc0a06db249d3c8d59fba34ef7e4bce3b0060b4 23136333

pex 2.62.0


2.62.0

This release brings full support for universal lock splitting. You can now declare conflicting top-level requirements for different (marker) environments and these will be isolated in separate lock resolves in the same universal lock file. These split resolves are performed in parallel and the appropriate split lock is later selected automatically when building a PEX or a venv from the

... (truncated)

Changelog

Sourced from pex's changelog.

2.63.0

This release adds population of a pex script to venvs created with pex3 venv create. This allows for executing Python in the activated venv via /path/to/venv/pex ... instead of source /path/to/venv/bin/activate && python ....

  • Include pex script in pex3 venv create. (#2960)

2.62.1

This release improves performance when creating venvs by eliminating an un-necessary re-hash of wheel files already installed in the Pex cache.

  • Avoid re-hashing wheels when re-installing. (#2958)

2.62.0

This release brings full support for universal lock splitting. You can now declare conflicting top-level requirements for different (marker) environments and these will be isolated in separate lock resolves in the same universal lock file. These split resolves are performed in parallel and the appropriate split lock is later selected automatically when building a PEX or a venv from the lock.

As part of this work, locks also filter wheels more faithfully. If you supply interpreter constraints that constrain to CPython, the resulting lock will now only contain cp platform-specific wheels (and, for example, not PyPy wheels).

  • Complete support for universal lock splitting. (#2940)
Commits

Updates psutil from 5.9.8 to 7.1.1

Changelog

Sourced from psutil's changelog.

7.1.1

2025-10-19

Enhancements

  • 2645_, [SunOS]: dropped support for SunOS 10.
  • 2646_, [SunOS]: add CI test runner for SunOS.

Bug fixes

  • 2641_, [SunOS]: cannot compile psutil from sources due to missing C include.
  • 2357_, [SunOS]: Process.cmdline()_ does not handle spaces properly. (patch by Ben Raz)

Compatibility notes

  • 2645_: SunOS 10 is no longer supported.

7.1.0

2025-09-17

Enhancements

  • 2581_, [Windows]: publish ARM64 wheels. (patch by Matthieu Darbois)
  • 2571_, [FreeBSD]: Dropped support for FreeBSD 8 and earlier. FreeBSD 8 was maintained from 2009 to 2013.
  • 2575_: introduced dprint CLI tool to format .yml and .md files.

Bug fixes

  • 2473_, [macOS]: Fix build issue on macOS 11 and lower.
  • 2494_, [Windows]: All APIs dealing with paths, such as Process.memory_maps(), Process.exe() and Process.open_files()_ does not properly handle UNC paths. Paths such as \\??\\C:\\Windows\\Temp and '\\Device\\HarddiskVolume1\\Windows\\Temp' are now converted to C:\\Windows\\Temp. (patch by Ben Peddell)
  • 2506_, [Windows]: Windows service APIs had issues with unicode services using special characters in their name.
  • 2514_, [Linux]: Process.cwd()_ sometimes fail with FileNotFoundError due to a race condition.
  • 2526_, [Linux]: Process.create_time(), which is used to univocally identify a process over time, is subject to system clock updates, and as such can lead to Process.is_running() returning a wrong result. A monotonic creation time is now used instead. (patch by Jonathan Kohler)
  • 2528_, [Linux]: Process.children()_ may raise PermissionError. It will now raise AccessDenied_ instead.

... (truncated)

Commits
  • a07e87a Pre release
  • 7a0756f Upgrade actions/setup-python@v6
  • 03c5c69 setup.py: link external libs also when compiling _psutil_posix.c ext
  • 49b56c2 [SunOS] Drop SunOS 10 support (#2647)
  • 8aca550 [SunOS] add CI test runner for SunOS (#2646)
  • c4dd48a Rename psutil_get_proc_list() to _psutil_pids()
  • 567b6c9 CI: rename ci-* Makefile target
  • c3f6551 avoid raising the result of pytest.skip/pytest.fail (#2638)
  • a2091b9 Centralize distribution sanity check into Makefile
  • 4250b8e Make ruff happy
  • Additional commits viewable in compare view

Updates pytest from 8.4.1 to 8.4.2

Release notes

Sourced from pytest's releases.

8.4.2

pytest 8.4.2 (2025-09-03)

Bug fixes

  • #13478: Fixed a crash when using console_output_style{.interpreted-text role="confval"} with times and a module is skipped.

  • #13530: Fixed a crash when using pytest.approx{.interpreted-text role="func"} and decimal.Decimal{.interpreted-text role="class"} instances with the decimal.FloatOperation{.interpreted-text role="class"} trap set.

  • #13549: No longer evaluate type annotations in Python 3.14 when inspecting function signatures.

    This prevents crashes during module collection when modules do not explicitly use from __future__ import annotations and import types for annotations within a if TYPE_CHECKING: block.

  • #13559: Added missing [int]{.title-ref} and [float]{.title-ref} variants to the [Literal]{.title-ref} type annotation of the [type]{.title-ref} parameter in pytest.Parser.addini{.interpreted-text role="meth"}.

  • #13563: pytest.approx{.interpreted-text role="func"} now only imports numpy if NumPy is already in sys.modules. This fixes unconditional import behavior introduced in [8.4.0]{.title-ref}.

Improved documentation

  • #13577: Clarify that pytest_generate_tests is discovered in test modules/classes; other hooks must be in conftest.py or plugins.

Contributor-facing changes

  • #13480: Self-testing: fixed a few test failures when run with -Wdefault or a similar override.
  • #13547: Self-testing: corrected expected message for test_doctest_unexpected_exception in Python 3.14.
  • #13684: Make pytest's own testsuite insensitive to the presence of the CI environment variable -- by ogrisel{.interpreted-text role="user"}.
Commits
  • bfae422 Prepare release version 8.4.2
  • 8990538 Fix passenv CI in tox ini and make tests insensitive to the presence of the C...
  • ca676bf Merge pull request #13687 from pytest-dev/patchback/backports/8.4.x/e63f6e51c...
  • 975a60a Merge pull request #13686 from pytest-dev/patchback/backports/8.4.x/12bde8af6...
  • 7723ce8 Merge pull request #13683 from even-even/fix_Exeption_to_Exception_in_errorMe...
  • b7f0568 Merge pull request #13685 from CoretexShadow/fix/docs-pytest-generate-tests
  • 2c94c4a add missing colon (#13640) (#13641)
  • c3d7684 Merge pull request #13606 from pytest-dev/patchback/backports/8.4.x/5f9938563...
  • dc6e3be Merge pull request #13605 from The-Compiler/training-update-2025-07
  • f87289c Fix crash with times output style and skipped module (#13573) (#13579)
  • Additional commits viewable in compare view

Updates python-lsp-jsonrpc from 1.0.0 to 1.1.2

Release notes

Sourced from python-lsp-jsonrpc's releases.

Python LSP JSON-RPC v1.1.2

This is a minor bugfix release that:

  • Fixes tests so they're compatible with both ujson and the pure json library.

Python LSP JSON-RPC v1.1.1

This is a minor bugfix release that:

  • Removes the redundant wheel dependency from pyproject.toml.
  • Adds a license trove classifier to pyproject.toml.

Python LSP JSON-RPC v1.1.0

Major release of python-lsp-jsonrpc with the following new features and changes:

  • Allow method handlers to return json rpc errors
  • Drop support for Python 3.7 and 3.6
Changelog

Sourced from python-lsp-jsonrpc's changelog.

Version 1.1.2 (2023/09/23)

Pull Requests Merged

  • PR 26 - Fix tests so they're compatible with both ujson and pure json library, by @​ajohnston9

In this release 1 pull request was closed.


Version 1.1.1 (2023/09/09)

Issues Closed

In this release 1 issue was closed.

Pull Requests Merged

In this release 2 pull requests were closed.


Version 1.1.0 (2023/09/07)

New features

  • Allow method handlers to return json rpc errors
  • Drop support for Python 3.7 and 3.6

Issues Closed

In this release 1 issue was closed.

Pull Requests Merged

... (truncated)

Commits
  • 786d8dd Update changelog for 1.1.2 (#27)
  • 869bf81 Fix tests so they're compatible with both ujson and pure json library (#26)
  • 1a5ef44 Update Changelog for 1.1.1 (#24)
  • 2e41478 Add license trove classifier (#19)
  • 7360cd8 Remove redundant wheel dep from pyproject.toml (#23)
  • 73e028f Update changelog for 1.1.0 (#22)
  • c53210e Drop support for Python 3.7 (#21)
  • b0331b7 Allow method handlers to return json rpc errors (#20)
  • c73fbdb Make necessary changes to drop support for Python 3.6 (#16)
  • 81f1b86 Migrate metadata from setup.cfg to PEP 621-compliant pyproject.toml (#14)
  • Additional commits viewable in compare view

Updates setproctitle from 1.3.2 to 1.3.7

Changelog

Sourced from setproctitle's changelog.

Version 1.3.7

  • Add support for Python 3.14 (issue #152).

Version 1.3.6

  • Add support for free-threading (issue #147).

Version 1.3.5

  • Fix bouncing Dock icon on macOS (issue #143).
  • Fix building on C23 compilers (issue #145).

Version 1.3.4

  • Add support for Python 3.13 (issue #139).
  • Drop support for Python 3.7.

Version 1.3.3

  • Add support for Python 3.12.
  • Fix package metadata to include Python 3.11, 3.12.
Commits
  • 389ed6f chore: bump version to 1.3.7
  • 0225735 Build CPython 3.14 wheels
  • 11d5ba7 chore: drop end year copyright
  • 9950f38 chore: use a standard license file format
  • 864cb72 chore: bump version update history
  • ef9cee1 Merge pull request #148 from lysnikolaou/free-threading
  • fb28127 Implement support for CPython 3.13t
  • cacf96f chore: bump version number to 1.3.5
  • 314c9a8 Merge pull request #146 from gershnik/fix-145
  • 8787da7 docs: add release note about C23 compilers fix
  • Additional commits viewable in compare view

Updates setuptools to 80.9.0

Changelog

Sourced from setuptools's changelog.

v80.9.0

Features

  • Set a deadline for the removal of pkg_resources later this year (December). (#3085)
  • Removed reliance on pkg_resources in test_wheel. (#3085)

v80.8.0

Features

  • Replaced more references to pkg_resources with importlib equivalents in wheel odule. (#3085)
  • Restore explicit LICENSE file. (#5001)
  • Removed no longer used build dependency on coherent.licensed. (#5003)

v80.7.1

Bugfixes

  • Only attempt to fetch eggs for unsatisfied requirements. (#4998)
  • In installer, when discovering egg dists, let metadata discovery search each egg. (#4998)

v80.7.0

Features

  • Removed usage of pkg_resources from installer. Set an official deadline on the installer deprecation to 2025-10-31. (#4997)

Misc

v80.6.0

Features

... (truncated)

Commits
  • 9c4d383 Bump version: 80.8.0 → 80.9.0
  • 05cb3c8 Merge pull request #5014 from pypa/debt/pkg_resources-deadline
  • 3b0bf5b Adjust ignore
  • 9c28cdf Set a deadline for the removal of pkg_resources later this year (December).
  • a3bfef9 Merge pull request #5013 from DimitriPapadopoulos/ISC
  • 64bf9d0 Enforce ruff/flake8-implicit-str-concat rules (ISC)
  • 3250c25 Fix broken link in docs (#4947)
  • 5ccf50e Merge pull request #5006 from pypa/feature/remove-more-pkg_resources
  • 134e587 Suppress nitpicky typecheck in pyright.
  • 0bf2663 Add news fragment.
  • Additional commits viewable in compare view

Updates types-freezegun from 1.1.6 to 1.1.10

Commits
  • See full diff in

@dependabot dependabot bot added category:internal CI, fixes for not-yet-released features, etc. dependencies Pull requests that update a dependency file release-notes:not-required [CI] PR doesn't require mention in release notes labels Oct 24, 2025
@sureshjoshi sureshjoshi self-assigned this Oct 24, 2025
@dependabot dependabot bot force-pushed the dependabot/pip/3rdparty/python/python-version-updates-45a91e275d branch from 0ca51a3 to d4bb474 Compare October 24, 2025 21:37
Updates the requirements on [fasteners](https://github.com/harlowja/fasteners), [freezegun](https://github.com/spulec/freezegun), [ijson](https://github.com/ICRAR/ijson), [libcst](https://github.com/Instagram/LibCST), [packaging](https://github.com/pypa/packaging), [pex](https://github.com/pex-tool/pex), [psutil](https://github.com/giampaolo/psutil), [pytest](https://github.com/pytest-dev/pytest), [python-lsp-jsonrpc](https://github.com/python-lsp/python-lsp-jsonrpc), [setproctitle](https://github.com/dvarrazzo/py-setproctitle), [setuptools](https://github.com/pypa/setuptools), [types-freezegun](https://github.com/python/typeshed), [types-pyyaml](https://github.com/typeshed-internal/stub_uploader), [types-requests](https://github.com/typeshed-internal/stub_uploader), [types-setuptools](https://github.com/typeshed-internal/stub_uploader), [types-toml](https://github.com/python/typeshed), [typing-extensions](https://github.com/python/typing_extensions), [urllib3](https://github.com/urllib3/urllib3), [debugpy](https://github.com/microsoft/debugpy), [pydevd-pycharm](https://github.com/JetBrains/intellij-community), [fastapi](https://github.com/fastapi/fastapi), [starlette](https://github.com/Kludex/starlette), [strawberry-graphql[fastapi]](https://github.com/strawberry-graphql/strawberry), [uvicorn[standard]](https://github.com/Kludex/uvicorn), [beautifulsoup4](https://www.crummy.com/software/BeautifulSoup/bs4/), [python-gnupg](https://github.com/vsajip/python-gnupg), [pygithub](https://github.com/pygithub/pygithub), [mypy](https://github.com/python/mypy), [strawberry-graphql](https://github.com/strawberry-graphql/strawberry), [pytest-cov](https://github.com/pytest-dev/pytest-cov) and [flake8](https://github.com/pycqa/flake8) to permit the latest version.

Updates `fasteners` from 0.16.3 to 0.20
- [Release notes](https://github.com/harlowja/fasteners/releases)
- [Changelog](https://github.com/harlowja/fasteners/blob/main/CHANGELOG.md)
- [Commits](harlowja/fasteners@0.16.3...0.20)

Updates `freezegun` from 1.2.1 to 1.5.5
- [Release notes](https://github.com/spulec/freezegun/releases)
- [Changelog](https://github.com/spulec/freezegun/blob/master/CHANGELOG)
- [Commits](spulec/freezegun@1.2.1...1.5.5)

Updates `ijson` from 3.2.3 to 3.4.0.post0
- [Changelog](https://github.com/ICRAR/ijson/blob/master/CHANGELOG.md)
- [Commits](ICRAR/ijson@v3.2.3...v3.4.0.post0)

Updates `libcst` from 1.4.0 to 1.8.5
- [Release notes](https://github.com/Instagram/LibCST/releases)
- [Changelog](https://github.com/Instagram/LibCST/blob/main/CHANGELOG.md)
- [Commits](Instagram/LibCST@v1.4.0...v1.8.5)

Updates `packaging` from 24.2 to 25.0
- [Release notes](https://github.com/pypa/packaging/releases)
- [Changelog](https://github.com/pypa/packaging/blob/main/CHANGELOG.rst)
- [Commits](pypa/packaging@24.2...25.0)

Updates `pex` from 2.61.1 to 2.63.0
- [Release notes](https://github.com/pex-tool/pex/releases)
- [Changelog](https://github.com/pex-tool/pex/blob/main/CHANGES.md)
- [Commits](pex-tool/pex@v2.61.1...v2.63.0)

Updates `psutil` from 5.9.8 to 7.1.1
- [Changelog](https://github.com/giampaolo/psutil/blob/master/HISTORY.rst)
- [Commits](giampaolo/psutil@release-5.9.8...release-7.1.1)

Updates `pytest` from 8.4.1 to 8.4.2
- [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.4.1...8.4.2)

Updates `python-lsp-jsonrpc` from 1.0.0 to 1.1.2
- [Release notes](https://github.com/python-lsp/python-lsp-jsonrpc/releases)
- [Changelog](https://github.com/python-lsp/python-lsp-jsonrpc/blob/develop/CHANGELOG.md)
- [Commits](python-lsp/python-lsp-jsonrpc@v1.0.0...v1.1.2)

Updates `setproctitle` from 1.3.2 to 1.3.7
- [Changelog](https://github.com/dvarrazzo/py-setproctitle/blob/master/HISTORY.rst)
- [Commits](dvarrazzo/py-setproctitle@version-1.3.2...version-1.3.7)

Updates `setuptools` to 80.9.0
- [Release notes](https://github.com/pypa/setuptools/releases)
- [Changelog](https://github.com/pypa/setuptools/blob/main/NEWS.rst)
- [Commits](pypa/setuptools@v63.1.0...v80.9.0)

Updates `types-freezegun` from 1.1.6 to 1.1.10
- [Commits](https://github.com/python/typeshed/commits)

Updates `types-pyyaml` from 6.0.3 to 6.0.12.20250915
- [Commits](https://github.com/typeshed-internal/stub_uploader/commits)

Updates `types-requests` from 2.28.1 to 2.32.4.20250913
- [Commits](https://github.com/typeshed-internal/stub_uploader/commits)

Updates `types-setuptools` from 62.6.1 to 80.9.0.20250822
- [Commits](https://github.com/typeshed-internal/stub_uploader/commits)

Updates `types-toml` from 0.10.8 to 0.10.8.20240310
- [Commits](https://github.com/python/typeshed/commits)

Updates `typing-extensions` to 4.15.0
- [Release notes](https://github.com/python/typing_extensions/releases)
- [Changelog](https://github.com/python/typing_extensions/blob/main/CHANGELOG.md)
- [Commits](python/typing_extensions@4.12.0...4.15.0)

Updates `urllib3` to 2.5.0
- [Release notes](https://github.com/urllib3/urllib3/releases)
- [Changelog](https://github.com/urllib3/urllib3/blob/main/CHANGES.rst)
- [Commits](urllib3/urllib3@0.3...2.5.0)

Updates `debugpy` from 1.8.13 to 1.8.17
- [Release notes](https://github.com/microsoft/debugpy/releases)
- [Commits](microsoft/debugpy@v1.8.13...v1.8.17)

Updates `pydevd-pycharm` from 251.23536.40 to 253.27642.35
- [Release notes](https://github.com/JetBrains/intellij-community/releases)
- [Commits](JetBrains/intellij-community@pycharm/251.23536.40...pycharm/253.27642.35)

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

Updates `starlette` from 0.19.1 to 0.48.0
- [Release notes](https://github.com/Kludex/starlette/releases)
- [Changelog](https://github.com/Kludex/starlette/blob/main/docs/release-notes.md)
- [Commits](Kludex/starlette@0.19.1...0.48.0)

Updates `strawberry-graphql[fastapi]` from 0.114.0 to 0.284.1
- [Release notes](https://github.com/strawberry-graphql/strawberry/releases)
- [Changelog](https://github.com/strawberry-graphql/strawberry/blob/main/CHANGELOG.md)
- [Commits](strawberry-graphql/strawberry@0.114.0...0.284.1)

Updates `uvicorn[standard]` from 0.17.6 to 0.38.0
- [Release notes](https://github.com/Kludex/uvicorn/releases)
- [Changelog](https://github.com/Kludex/uvicorn/blob/main/docs/release-notes.md)
- [Commits](Kludex/uvicorn@0.17.6...0.38.0)

Updates `beautifulsoup4` from 4.11.1 to 4.14.2

Updates `python-gnupg` from 0.4.9 to 0.5.5
- [Release notes](https://github.com/vsajip/python-gnupg/releases)
- [Changelog](https://github.com/vsajip/python-gnupg/blob/master/release)
- [Commits](vsajip/python-gnupg@0.4.9...0.5.5)

Updates `pygithub` from 2.4.0 to 2.8.1
- [Release notes](https://github.com/pygithub/pygithub/releases)
- [Changelog](https://github.com/PyGithub/PyGithub/blob/main/doc/changes.rst)
- [Commits](PyGithub/PyGithub@v2.4.0...v2.8.1)

Updates `mypy` from 1.15.0 to 1.18.2
- [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md)
- [Commits](python/mypy@v1.15.0...v1.18.2)

Updates `strawberry-graphql` from 0.240.4 to 0.284.1
- [Release notes](https://github.com/strawberry-graphql/strawberry/releases)
- [Changelog](https://github.com/strawberry-graphql/strawberry/blob/main/CHANGELOG.md)
- [Commits](strawberry-graphql/strawberry@0.240.4...0.284.1)

Updates `pytest-cov` from 6.2.1 to 7.0.0
- [Changelog](https://github.com/pytest-dev/pytest-cov/blob/master/CHANGELOG.rst)
- [Commits](pytest-dev/pytest-cov@v6.2.1...v7.0.0)

Updates `flake8` to 7.3.0
- [Commits](PyCQA/flake8@5.0.4...7.3.0)

---
updated-dependencies:
- dependency-name: fasteners
  dependency-version: '0.20'
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-version-updates
- dependency-name: freezegun
  dependency-version: 1.5.5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-version-updates
- dependency-name: ijson
  dependency-version: 3.4.0.post0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-version-updates
- dependency-name: libcst
  dependency-version: 1.8.5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-version-updates
- dependency-name: packaging
  dependency-version: '25.0'
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: python-version-updates
- dependency-name: pex
  dependency-version: 2.63.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-version-updates
- dependency-name: psutil
  dependency-version: 7.1.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: python-version-updates
- dependency-name: pytest
  dependency-version: 8.4.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-version-updates
- dependency-name: python-lsp-jsonrpc
  dependency-version: 1.1.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-version-updates
- dependency-name: setproctitle
  dependency-version: 1.3.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-version-updates
- dependency-name: setuptools
  dependency-version: 80.9.0
  dependency-type: direct:production
  dependency-group: python-version-updates
- dependency-name: types-freezegun
  dependency-version: 1.1.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-version-updates
- dependency-name: types-pyyaml
  dependency-version: 6.0.12.20250915
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-version-updates
- dependency-name: types-requests
  dependency-version: 2.32.4.20250913
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-version-updates
- dependency-name: types-setuptools
  dependency-version: 80.9.0.20250822
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: python-version-updates
- dependency-name: types-toml
  dependency-version: 0.10.8.20240310
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-version-updates
- dependency-name: typing-extensions
  dependency-version: 4.15.0
  dependency-type: direct:production
  dependency-group: python-version-updates
- dependency-name: urllib3
  dependency-version: 2.5.0
  dependency-type: direct:production
  dependency-group: python-version-updates
- dependency-name: debugpy
  dependency-version: 1.8.17
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-version-updates
- dependency-name: pydevd-pycharm
  dependency-version: 253.27642.35
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: python-version-updates
- dependency-name: fastapi
  dependency-version: 0.120.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-version-updates
- dependency-name: starlette
  dependency-version: 0.48.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-version-updates
- dependency-name: strawberry-graphql[fastapi]
  dependency-version: 0.284.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-version-updates
- dependency-name: uvicorn[standard]
  dependency-version: 0.38.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-version-updates
- dependency-name: beautifulsoup4
  dependency-version: 4.14.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-version-updates
- dependency-name: python-gnupg
  dependency-version: 0.5.5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-version-updates
- dependency-name: pygithub
  dependency-version: 2.8.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-version-updates
- dependency-name: mypy
  dependency-version: 1.18.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-version-updates
- dependency-name: strawberry-graphql
  dependency-version: 0.284.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-version-updates
- dependency-name: pytest-cov
  dependency-version: 7.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: python-version-updates
- dependency-name: flake8
  dependency-version: 7.3.0
  dependency-type: direct:production
  dependency-group: python-version-updates
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/pip/3rdparty/python/python-version-updates-45a91e275d branch from d4bb474 to 84f940b Compare October 27, 2025 05:06
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Oct 28, 2025

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

@dependabot dependabot bot closed this Oct 28, 2025
@dependabot dependabot bot deleted the dependabot/pip/3rdparty/python/python-version-updates-45a91e275d branch October 28, 2025 03:11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

category:internal CI, fixes for not-yet-released features, etc. dependencies Pull requests that update a dependency file release-notes:not-required [CI] PR doesn't require mention in release notes

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants