Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 1, 2025

Bumps the minor group with 4 updates: flake8, mypy, uv and setuptools-scm[toml].

Updates flake8 from 7.1.1 to 7.2.0

Commits
  • 16f5f28 Release 7.2.0
  • ebad305 Merge pull request #1974 from PyCQA/update-plugins
  • d56d569 update versions of pycodestyle / pyflakes
  • a7e8f62 Merge pull request #1973 from PyCQA/py39-plus
  • 9d55ccd py39+
  • e492aeb Merge pull request #1967 from PyCQA/unnecessary-mocks
  • fa2ed71 remove a few unnecessary mocks in test_checker_manager
  • fffee8b Release 7.1.2
  • 19001f7 Merge pull request #1966 from PyCQA/limit-procs-to-file-count
  • f35737a avoid starting unnecessary processes when file count is limited
  • See full diff in compare view

Updates mypy from 1.14.1 to 1.15.0

Changelog

Sourced from mypy's changelog.

Mypy Release Notes

Next Release

Different Property Getter and Setter Types

Mypy now supports using different types for property getter and setter.

class A:
    value: int
@property
def f(self) -> int:
    return self.value
@f.setter
def f(self, x: str | int) -> None:
    try:
        self.value = int(x)
    except ValueError:
        raise Exception(f"'{x}' is not a valid value for 'f'")

Contributed by Ivan Levkivskyi (PR 18510)

Selectively Disable Deprecated Warnings

It's now possible to selectively disable warnings generated from warnings.deprecated using the --deprecated-calls-exclude option.

# mypy --enable-error-code deprecated
#      --deprecated-calls-exclude=foo.A
import foo
foo.A().func()  # OK, the deprecated warning is ignored
file foo.py
from typing_extensions import deprecated
class A:
@​deprecated("Use A.func2 instead")
def func(self): pass

Contributed by Marc Mueller (PR 18641)

Mypy 1.15

We’ve just uploaded mypy 1.15 to the Python Package Index (PyPI).

... (truncated)

Commits
  • 9397454 remove +dev from version ahead of final release
  • 686b591 remove "unreleased" from 1.15 changelog entry
  • cb4b243 Various small updates to 1.15 changelog (#18599)
  • 1a26502 Prepare changelog for 1.15 release (#18583)
  • d4515e4 Fix a few PR links in the changelog (#18586)
  • f83b643 Add object self-type to tuple test fixture (#18592)
  • ebc2cb8 Prevent crash on generic NamedTuple with unresolved typevar bound (#18585)
  • 63c251e empty commit to trigger wheel rebuild
  • c30573e Fix literal context for ternary expressions (for real) (#18545)
  • 23d862d Fix isinstance with explicit (non generic) type alias (#18512)
  • Additional commits viewable in compare view

Updates uv from 0.5.26 to 0.6.11

Release notes

Sourced from uv's releases.

0.6.11

Release Notes

Enhancements

  • Add dependents ("via ..." comments) in uv export command (#12350)
  • Bump least-recent non-EOL macOS version to 13.0 (#12518)
  • Support --find-links-style "flat" indexes in [[tool.uv.index]] (#12407)
  • Distinguish between -q and -qq (#12300)

Configuration

  • Support UV_PROJECT environment to set project directory. (#12327)

Performance

  • Use a boxed slice for various requirement types (#12514)

Bug fixes

  • Add a newline after metadata when initializing scripts with other metadata blocks (#12501)
  • Avoid writing empty requires-python to script blocks (#12517)
  • Respect build constraints in uv sync (#12502)
  • Respect transitive dependencies in uv tree --only-group (#12560)

uv 0.6.11

Install uv 0.6.11

Install prebuilt binaries via shell script

curl --proto '=https' --tlsv1.2 -LsSf https://github.com/astral-sh/uv/releases/download/0.6.11/uv-installer.sh | sh

Install prebuilt binaries via powershell script

powershell -ExecutionPolicy Bypass -c "irm https://github.com/astral-sh/uv/releases/download/0.6.11/uv-installer.ps1 | iex"

Download uv 0.6.11

File Platform Checksum
uv-aarch64-apple-darwin.tar.gz Apple Silicon macOS checksum
uv-x86_64-apple-darwin.tar.gz Intel macOS checksum
uv-aarch64-pc-windows-msvc.zip ARM64 Windows checksum
uv-i686-pc-windows-msvc.zip x86 Windows checksum
uv-x86_64-pc-windows-msvc.zip x64 Windows checksum

... (truncated)

Changelog

Sourced from uv's changelog.

0.6.11

Enhancements

  • Add dependents ("via ..." comments) in uv export command (#12350)
  • Bump least-recent non-EOL macOS version to 13.0 (#12518)
  • Support --find-links-style "flat" indexes in [[tool.uv.index]] (#12407)
  • Distinguish between -q and -qq (#12300)

Configuration

  • Support UV_PROJECT environment to set project directory. (#12327)

Performance

  • Use a boxed slice for various requirement types (#12514)

Bug fixes

  • Add a newline after metadata when initializing scripts with other metadata blocks (#12501)
  • Avoid writing empty requires-python to script blocks (#12517)
  • Respect build constraints in uv sync (#12502)
  • Respect transitive dependencies in uv tree --only-group (#12560)

0.6.10

Enhancements

  • Add uv sync --check flag (#12342)
  • Add support for Python version requests in uv python list (#12375)
  • Support .env files in uv tool run (#12386)
  • Support python find --script (#11891)

Preview features

  • Check all compatible torch indexes when --torch-backend is enabled (#12385)

Performance

  • Use a boxed slice for extras and groups (#12391)
  • Use small string for index name type (#12355)

Bug fixes

  • Allow virtual packages with --no-build (#12314)
  • Ignore --find-links entries for pinned indexes (#12396)
  • Omit wheels from lockfile based on --exclude-newer (#12299)
  • Retain end-of-line comment position when adding dependency (#12360)
  • Omit fragment when querying for wheels in Simple HTML API (#12384)
  • Error on missing argument in requirements.txt (#12354)

... (truncated)

Commits
  • 0632e24 Add UV_PROJECT to changelog (#12563)
  • fe7fc32 Bump version to v0.6.11 (#12535)
  • ac2dcd6 Support UV_PROJECT environment to set project directory. (#12327)
  • 56914c9 Use Entry API in lockfile-to-requirements.txt construction (#12561)
  • 2a28dac Respect transitive dependencies in uv tree --only-group (#12560)
  • 4554ebb changed where the fish completions get installed to where fish docs recommend...
  • 57c57d1 Fix statement in Required environments docs (#12540)
  • ab3bab1 Add dependents ("via ..." comments) in export command (#12350)
  • 2d8c807 Remove dummy file (#12530)
  • c6fb121 Avoid writing empty requires-python to script blocks (#12517)
  • Additional commits viewable in compare view

Updates setuptools-scm[toml] from 8.1.0 to 8.2.0

Changelog

Sourced from setuptools-scm[toml]'s changelog.

v8.2.0

Added

  • fix #960: add a --force-write-version-files flag for the cli

Changed

  • fix #950: ensure to pass encodings to io usage
  • fix #957: add subprocess timeout control env var
  • add sp-repo-review pre-commit hook

Fixed

  • fix #1018: allow non-normalized versions for semver
  • fix #1103: respect GIT_CEILING_DIRECTORIES when trying to find git toplevels
  • fix #1081: add name normalized pipx entrypoint
  • fix #1080: clean pdm from PYTHONPATH to protect mercurial
Commits
  • e554978 complete changelog to reasonable accuracy for quick release
  • 260dcf0 chore: scriv collect
  • 836eb42 Merge pull request #1096 from DimitriPapadopoulos/ruff_0.9.1
  • 98b7078 Merge pull request #1106 from Ecordonnier/eco/git-ceiling-directories
  • 7d4e94c Merge pull request #1104 from jezdez/patch-1
  • 0b82e5d [pre-commit.ci] auto fixes from pre-commit.com hooks
  • 979d793 respect GIT_CEILING_DIRECTORIES
  • 68c6b20 Add missing code block end.
  • 9b6f031 Merge pull request #1102 from paugier/error-message-env-var
  • 2b0722f Mention SETUPTOOLS_SCM_PRETEND_VERSION_FOR in error message
  • 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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @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 minor group with 4 updates: [flake8](https://github.com/pycqa/flake8), [mypy](https://github.com/python/mypy), [uv](https://github.com/astral-sh/uv) and [setuptools-scm[toml]](https://github.com/pypa/setuptools-scm).


Updates `flake8` from 7.1.1 to 7.2.0
- [Commits](PyCQA/flake8@7.1.1...7.2.0)

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

Updates `uv` from 0.5.26 to 0.6.11
- [Release notes](https://github.com/astral-sh/uv/releases)
- [Changelog](https://github.com/astral-sh/uv/blob/main/CHANGELOG.md)
- [Commits](astral-sh/uv@0.5.26...0.6.11)

Updates `setuptools-scm[toml]` from 8.1.0 to 8.2.0
- [Release notes](https://github.com/pypa/setuptools-scm/releases)
- [Changelog](https://github.com/pypa/setuptools-scm/blob/main/CHANGELOG.md)
- [Commits](pypa/setuptools-scm@v8.1.0...v8.2.0)

---
updated-dependencies:
- dependency-name: flake8
  dependency-version: 7.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: mypy
  dependency-version: 1.15.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: uv
  dependency-version: 0.6.11
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: setuptools-scm[toml]
  dependency-version: 8.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added part:tooling Affects the development tooling (CI, deployment, dependency management, etc.) type:tech-debt Improves the project without visible changes for users labels Apr 1, 2025
@dependabot dependabot bot requested a review from a team as a code owner April 1, 2025 09:36
@github-actions github-actions bot added the part:dispatcher Affects the high-level dispatcher interface label Apr 1, 2025
@llucax llucax enabled auto-merge April 1, 2025 09:37
@llucax llucax added this pull request to the merge queue Apr 1, 2025
@llucax
Copy link
Contributor

llucax commented Apr 1, 2025

I guess uv can be removed as it is not really used, right?

Merged via the queue into v0.x.x with commit 8300c42 Apr 1, 2025
8 of 9 checks passed
@llucax llucax deleted the dependabot/pip/minor-8d86b57bb9 branch April 1, 2025 09:41
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

part:dispatcher Affects the high-level dispatcher interface part:tooling Affects the development tooling (CI, deployment, dependency management, etc.) type:tech-debt Improves the project without visible changes for users

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants