Skip to content

Bump the uv-updates group with 4 updates - #1827

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/uv/uv-updates-a67b91607c
Open

Bump the uv-updates group with 4 updates#1827
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/uv/uv-updates-a67b91607c

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 17, 2026

Copy link
Copy Markdown
Contributor

Bumps the uv-updates group with 4 updates: setuptools, lastversion, prek and tox.

Updates setuptools from 83.0.0 to 84.0.0

Changelog

Sourced from setuptools's changelog.

v84.0.0

Features

  • Newline-separated keywords and platformspypa/setuptools#4887old specification <https://peps.python.org/pep-0345/>_ separated items with spaces and the current one uses commas. (#4887)
  • Extensionpypa/distutils#373#5022)
  • The C compiler modules now emit log messages through their own compilers.C.* loggers instead of the distutils root logger, part of decoupling the compilers package from distutils. The logger names are normalized to a stable compilers.C.* prefix so they remain constant as the package migrates toward a standalone compilers.C distribution. (#5266)
  • The C compilers gained a Compiler.call method -- a thin wrapper over subprocess.check_call (with macOS deployment-target env injection) that is the modern replacement for Compiler.spawn. The compilers no longer depend on distutils.spawn, distutils.dir_util, distutils.file_util, distutils._modified, or distutils.util.execute/split_quoted: the generic newer/newer_group and split_quoted helpers are vendored into the compilers package, and Compiler.mkpath/move_file/execute are implemented directly on the standard library (os.makedirs/shutil.move). The methods are retained for backward compatibility. (#5267)
  • The compilers no longer depend on distutils.util, distutils.version, distutils.compat, or distutils._macos_compat. The platform-identification helpers (get_platform/get_host_platform/is_mingw) now live in distutils.compilers.platform.detect and the macOS deployment-target logic and compiler_fixup in distutils.compilers.platform.macos; CygwinCCompiler.gcc_version returns a packaging.version.Version. distutils.util re-exports the platform/macOS helpers from their new homes for backward compatibility rather than keeping duplicate copies. (sysconfig lookups still route through distutils pending its own decoupling.) (#5268)
  • The compilers now read their build configuration from the standard library's sysconfig instead of distutils.sysconfig. Per-compiler customization -- previously distutils.sysconfig.customize_compiler -- has moved into Compiler.configure_system(): a no-op on the base class, with UnixCCompiler applying the compiler/flag/archiver settings CPython recorded in sysconfig (and the usual CC/CFLAGS/LDSHARED/… environment overrides). distutils.sysconfig.customize_compiler is retained as a thin wrapper that calls compiler.configure_system(). (#5269)

Bugfixes

  • The MSVC linker now passes its arguments through a response file when the command line would exceed the Windows maximum length, fixing failures when linking a large number of objects. (#4177)
  • The Cygwin and MinGW compilers now pass -O1 instead of a bare -O. The two are equivalent to GCC, but cc1 rejected the bare form when building 32-bit extensions with -m32. -- by :user:dchaudhari7177 (#4873)
  • copy_filepypa/distutils#379#5079)
  • Setuptools wheels no longer bundled the project's own test modules. -- by :user:itscloud0 (#5212)
  • build_ext no longer fails when cross-compiling with a compiler other than MSVC (such as MinGW). Compiler now provides a no-op initialize()pypa/distutils#399

Improved Documentation

  • Clarified what "correspond exactly to the directory structure" means in the packages section of the Package Discovery user guide. (#4109)
  • Documented how bdist_wheel's py_limited_api option controls abi3 wheel tagging for extension modules -- by :user:Himanshuagrawal4 (#4741)

Deprecations and Removals

  • Compiler.spawn is deprecated in favor of the new Compiler.call. call raises native subprocess exceptions; spawn remains as a shim that emits a DeprecationWarning and translates them to DistutilsExecError. The MSVC spawn compatibility shim for third-party monkeypatches predating the env argument (numpy.distutils before 1.19, per pypa/distutils#15) has been removed. distutils.spawn.spawn is likewise reduced to a thin wrapper around subprocess.check_call: it no longer resolves cmd[0] via shutil.which (subprocess searches PATH itself) nor injects MACOSX_DEPLOYMENT_TARGET (that now lives with the compilers, the only callers to which it applied). (#5267)
  • Building an extension with a MACOSX_DEPLOYMENT_TARGET lower than the interpreter's configured value now raises compilers.errors.PlatformError instead of distutils.errors.DistutilsPlatformError (the macOS deployment-target check moved into the compilers package). CygwinCCompiler.gcc_version returns a packaging.version.Version rather than the removed distutils.version.LooseVersion. Completing the transition begun in pypa/distutils#246, UnixCCompiler.runtime_library_dir_option now returns the ["-Wl,--enable-new-dtags", "-Wl,-rpath,<dir>"] list directly for GNU ld rather than collapsing it into a single string, and the temporary distutils.compat.consolidate_linker_args shim has been removed. (#5268)
  • The compilers now define their own exception vocabulary instead of borrowing distutils' framework errors. Language-agnostic exceptions (Error, UnknownFileType, and a new PlatformError) live at distutils.compilers.errors, leaving room for future compilers.<language> siblings; the C/C++-specific CompileError/LinkError/LibError/PreprocessError remain in distutils.compilers.C.errors. The compilers now raise compilers.errors.PlatformError where they previously raised distutils.errors.DistutilsPlatformError/DistutilsModuleError, and compilers._modified.newer raises the stdlib FileNotFoundError. distutils.errors keeps its own framework exceptions and re-exports the compiler ones (CCompilerError, CompileError, etc.) for backward compatibility; because CCompilerError is compilers.errors.Error, code catching it (as distutils' top-level handlers do) still catches the new PlatformError. (#5270)
  • customize_compiler now asserts that the compiler-related config variables (CC, CXX, CFLAGS, etc.) resolve to strings, raising AssertionError if any are unexpectedly Nonepypa/distutils#363
Commits
  • 72e919a Merge pull request #5293 from pypa/bugfix/integration-pip-flit-backend
  • 1b29701 Select the top-level pyproject.toml when reading build requirements
  • bb1b381 Bump version: 83.0.0 → 84.0.0
  • ee6fdd7 Sync with distutils @ e8eb87855 (#5292)
  • 2a4a9e4 Merge remote-tracking branch 'origin/main' into distutils-e8eb87855
  • cbd1195 Merge https://github.com/jaraco/skeleton
  • bd3594e Merge pull request #5287 from Avasam/Configuring-lint.flake8-comprehensions.a...
  • f02e90a Configure C408 to allow dict(a=1) rather than disabling it
  • c55f52b Configuring lint.flake8-comprehensions.allow-dict-calls-with-keyword-argument...
  • e9904b0 Match the distutils sdist base type for the user_options override
  • Additional commits viewable in compare view

Updates lastversion from 3.6.12 to 3.6.17

Release notes

Sourced from lastversion's releases.

v3.6.17

Fixes RPM spec auto-bumps that were silently failing.

Every lastversion <file>.spec update against a spec genuinely behind upstream died with:

TypeError: '<' not supported between instances of 'str' and 'Version'

That is the only case the auto-bump exists for, so packaging cron chains failed on exactly the releases they were meant to catch. An already-current spec took the "nothing to do" branch and looked healthy, which hid it.

Root cause: current_version is read off the spec's Version: tag — the state of the file on disk — but it was stored in, and served back from, the release cache. The cache round-trips through JSON, so a cache hit returned a plain str while version was a Version.

Fixed:

  • Local project metadata is now parsed before the cache lookup and re-applied over a cache hit, mirroring the fetch path. This also fixes staleness: a cache entry written when the spec said 6.0.16 no longer dictates current_version after the spec moves on.
  • update_spec() coerces current_version and version to Version before comparing, as defence in depth.

v3.6.16

Page-scan holders now return the artifact URL instead of [None].

lastversion <page-scan repo> --assets crashed with TypeError: sequence item 0: expected str instance, NoneType found. Holders that scrape a links page have no RELEASE_URL_FORMAT, so release_download_url() returned None and get_assets() appended it verbatim. A falsy download URL is now simply not an asset.

The feed holder can do better: the hyperlink it matched on is the artifact location, so it is kept (absolute) and returned as the download URL.

A releases page typically links both the tarball and its release notes for the same version (varnish-6.0.18.tgz next to rel6.0.18.html). Both sanitize to the same version, so ties now break towards the archive rather than document order.

Pre-existing since the page link-scan landed in 3.6.13.

v3.6.15

Resolve Varnish/Vinyl Cache 6.0 LTS via vinyl-cache.org.

The Varnish Cache FOSS project renamed to Vinyl Cache in the 9.0 release (2026-03-16) after a trademark dispute with Varnish Software. The varnishcache/* GitHub org is archived; development moved to code.vinyl-cache.org. Varnish Software kept the trademark and now runs github.com/varnish/varnish as a downstream fork (a different codebase).

The 6.0 and 8.0 LTS branches stayed with Vinyl Cache, so the known-repo entries now scrape vinyl-cache.org/releases/.

This also fixes resolution on EL7: varnish-cache.org is TLS-1.3-only and EL7's OpenSSL 1.0.2k cannot negotiate it, so lookups died on the handshake. vinyl-cache.org serves TLS 1.2.

All historic spellings keep working (varnish-cache, varnishcache/varnish-cache, URL form); new vinyl-* spellings and bare hostnames resolve too.

v3.6.14

Resolve varnishcache/varnish-cache (GitHub owner/repo form) from the varnish-cache.org releases page as well, not just the bare name and site URL. The 6.0 LTS branch is no longer tagged on GitHub, so that form returned a stale 6.0.16.

v3.6.13

What's new

  • Feed holder: known-repo entries can carry a page URL whose hyperlinks are scanned for versioned artifact names — used when a project's homepage feed lags or omits maintenance releases.
  • varnish-cache now resolves from varnish-cache.org/releases/ (by name and by URL): Varnish 6.0 LTS releases after 6.0.16 are dist-tarball-only (no GitHub tags), so lastversion varnish-cache --major 6.0 previously stalled at 6.0.16. It now returns 6.0.18.
  • Fixed a crash (NoneType concatenation) when invoking --at website-feed example.org with a bare hostname.
Changelog

Sourced from lastversion's changelog.

Changelog

All notable changes to this project will be documented in this file.

Commits
  • 12a8932 update-spec: don't let a cached str version break the auto-bump; release 3.6.17
  • 17b3b30 Page-scan holders: return the artifact URL, not [None]; release 3.6.16
  • a925479 Resolve varnish-cache 6.0 LTS via vinyl-cache.org; release 3.6.15
  • 90019d2 Resolve varnish-cache 6.0 LTS for the GitHub owner/repo form too
  • a54f03f Release 3.6.13
  • 42a4fda feed holder: known-repo 'page' link-scan; resolve varnish-cache 6.0 LTS
  • 0831479 docs: redirect stale /en/latest/ ReadTheDocs URL to root
  • a00696e docs: fix hosted API documentation link
  • 444d34a docs: fix documentation badge target
  • d809f62 test: isolate Helm chart URL handling
  • Additional commits viewable in compare view

Updates prek from 0.4.12 to 0.4.13

Release notes

Sourced from prek's releases.

0.4.13

Release Notes

Released on 2026-08-10.

Highlights

Manage hook tools with mise

The new language: mise support lets hooks install tools using mise in an isolated environment:

repos:
  - repo: local
    hooks:
      - id: golangci-lint
        name: golangci-lint
        language: mise
        additional_dependencies: ["aqua:golangci/golangci-lint@2"]
        entry: golangci-lint run --fast-only ./...
        pass_filenames: false

Run commands in hook environments

The new prek exec subcommand can run an explicit command in a configured hook's prepared environment. For example, the hook above makes its managed binary available to this command:

$ prek exec golangci-lint -- golangci-lint --version

Enhancements

  • Add mise language support (#2540)
  • Add deny-filename-pattern and require-filename-pattern hooks (#2488)
  • Add prek exec for running commands in a hook environment (#2478)
  • Add yaml-language-server: comment to YAML sample config (#2486)
  • Make prek cache size output terminal-aware (#2508)
  • Match file regexes against path bytes (#2541)
  • Show hook aliases in run output (#2497)
  • Show hook descriptions in run output (#2490)

Performance

  • Avoid env cache scans for skipped hooks (#2502)
  • Cache Node version queries (#2500)

... (truncated)

Changelog

Sourced from prek's changelog.

0.4.13

Released on 2026-08-10.

Highlights

Manage hook tools with mise

The new language: mise support lets hooks install tools using mise in an isolated environment:

repos:
  - repo: local
    hooks:
      - id: golangci-lint
        name: golangci-lint
        language: mise
        additional_dependencies: ["aqua:golangci/golangci-lint@2"]
        entry: golangci-lint run --fast-only ./...
        pass_filenames: false

Run commands in hook environments

The new prek exec subcommand can run an explicit command in a configured hook's prepared environment. For example, the hook above makes its managed binary available to this command:

$ prek exec golangci-lint -- golangci-lint --version

Enhancements

  • Add mise language support (#2540)
  • Add deny-filename-pattern and require-filename-pattern hooks (#2488)
  • Add prek exec for running commands in a hook environment (#2478)
  • Add yaml-language-server: comment to YAML sample config (#2486)
  • Make prek cache size output terminal-aware (#2508)
  • Match file regexes against path bytes (#2541)
  • Show hook aliases in run output (#2497)
  • Show hook descriptions in run output (#2490)

Performance

  • Avoid env cache scans for skipped hooks (#2502)
  • Cache Node version queries (#2500)

Bug fixes

... (truncated)

Commits

Updates tox from 4.58.0 to 4.60.0

Release notes

Sourced from tox's releases.

v4.60.0

What's Changed

New Contributors

Full Changelog: tox-dev/tox@4.59.0...4.60.0

v4.59.0

What's Changed

New Contributors

Full Changelog: tox-dev/tox@4.58.0...4.59.0

Changelog

Sourced from tox's changelog.

Features - 4.60.0

  • Add {home} and {tox_root_name} substitutions; set :ref:work_dir to e.g. "{home}/.local/state/tox/{tox_root_name}" to keep environments outside of the project tree - by :user:WhyNotHugo. (:issue:4020)

Bug fixes - 4.60.0

  • Provision the requested tox version before reading env_list, allowing configuration syntax introduced by that version - by :user:CAOShurong (:issue:4021)

Improved documentation - 4.60.0

  • Fix nine source-code links in the onboarding guide that pointed at paths which no longer exist, and correct the class names of the TOML configuration sources and loaders they refer to - by :user:Yusuf-Gadelrab. (:issue:4024)

v4.59.0 (2026-08-10)


Features - 4.59.0

  • The plugin and internal APIs now declare their types, and the code base passes mypy --strict and pyrefly next to ty - by :user:gaborjbernat.

    • :meth:ConfigSet.get <tox.config.sets.ConfigSet.get> returns a configuration value after checking it against its declared type, so plugins can drop cast around conf["key"] reads.
    • The :func:tox_on_install <tox.plugin.spec.tox_on_install> hook and :class:Installer <tox.tox_env.installer.Installer> type their arguments as :data:InstallArguments <tox.tox_env.installer.InstallArguments>; installer subclasses may narrow it through the new second type parameter.
    • :class:Parsed <tox.config.cli.parser.Parsed> declares the CLI option surface, so options.<name> reads type-check.
    • :meth:ConfigSet.add_config <tox.config.sets.ConfigSet.add_config> accepts default=None for optional values and infers the value type from callable defaults.
    • The journal, the environment cache, and execute metadata hold JsonValue content; structured set_env entries match the SetEnvEntry shape. (:issue:4014)

Improved documentation - 4.59.0

  • Mark the INI configuration format as deprecated throughout the documentation - by :user:gaborbernat.

    • The tutorial, the configuration reference, and the migration how-to state that INI keeps working for existing projects but is frozen and receives no new features.
    • Every INI example tab, the configuration discovery diagram, and the man page carry a deprecation marker.
    • The tutorial no longer suggests generating a tox.ini via tox quickstart. (:issue:4017)

... (truncated)

Commits
  • 02977de release 4.60.0
  • ec44803 Add {home} and {tox_root_name} substitutions (#4020)
  • 4636193 docs: repoint nine dead source links in the onboarding guide (#4025)
  • c3f8d22 Provision before loading env_list (#4022)
  • a313922 📄 docs: publish llms.txt from the docs build (#4023)
  • cb7eeca release 4.59.0
  • da75cad 📝 docs: mark the INI configuration format as deprecated (#4017)
  • ef7dc3a ✅ test: raise timeout for missing-interpreter discovery tests (#4018)
  • c76344d [pre-commit.ci] pre-commit autoupdate (#4016)
  • 7be33b8 ✨ feat(plugin): type the plugin and internal API surfaces (#4014)
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the uv-updates group with 4 updates: [setuptools](https://github.com/pypa/setuptools), [lastversion](https://github.com/dvershinin/lastversion), [prek](https://github.com/j178/prek) and [tox](https://github.com/tox-dev/tox).


Updates `setuptools` from 83.0.0 to 84.0.0
- [Release notes](https://github.com/pypa/setuptools/releases)
- [Changelog](https://github.com/pypa/setuptools/blob/main/NEWS.rst)
- [Commits](pypa/setuptools@v83.0.0...v84.0.0)

Updates `lastversion` from 3.6.12 to 3.6.17
- [Release notes](https://github.com/dvershinin/lastversion/releases)
- [Changelog](https://github.com/dvershinin/lastversion/blob/master/CHANGELOG.md)
- [Commits](dvershinin/lastversion@v3.6.12...v3.6.17)

Updates `prek` from 0.4.12 to 0.4.13
- [Release notes](https://github.com/j178/prek/releases)
- [Changelog](https://github.com/j178/prek/blob/master/CHANGELOG.md)
- [Commits](j178/prek@v0.4.12...v0.4.13)

Updates `tox` from 4.58.0 to 4.60.0
- [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@4.58.0...4.60.0)

---
updated-dependencies:
- dependency-name: setuptools
  dependency-version: 84.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: uv-updates
- dependency-name: lastversion
  dependency-version: 3.6.17
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: uv-updates
- dependency-name: prek
  dependency-version: 0.4.13
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: uv-updates
- dependency-name: tox
  dependency-version: 4.60.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: uv-updates
...

Signed-off-by: dependabot[bot] <support@github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants