Skip to content

Conversation

@red-hat-konflux
Copy link
Contributor

@red-hat-konflux red-hat-konflux bot commented May 10, 2025

This PR contains the following updates:

Package Change Age Confidence
Markdown (changelog) ==3.8 -> ==3.10 age confidence
Pygments (changelog) ==2.19.1 -> ==2.19.2 age confidence
astroid ==3.3.9 -> ==3.3.11 age confidence
black (changelog) ==25.1.0 -> ==25.11.0 age confidence
calver ==2025.4.17 -> ==2025.10.20 age confidence
certifi ==2024.8.30 -> ==2024.12.14 age confidence
charset-normalizer (changelog) ==3.3.2 -> ==3.4.4 age confidence
click (changelog) ==8.1.7 -> ==8.3.1 age confidence
cython (source) ==3.0.12 -> ==3.2.2 age confidence
distlib ==0.3.9 -> ==0.4.0 age confidence
dogpile-cache ==1.3.4 -> ==1.5.0 age confidence
exceptiongroup (changelog) ==1.2.2 -> ==1.3.1 age confidence
fastjsonschema ==2.21.1 -> ==2.21.2 age confidence
filelock ==3.18.0 -> ==3.20.0 age confidence
flake8 (changelog) ==7.2.0 -> ==7.3.0 age confidence
gitpython ==3.1.44 -> ==3.1.45 age confidence
griffe (changelog) ==1.7.3 -> ==1.15.0 age confidence
hatch-nodejs-version ==0.3.2 -> ==0.4.0 age confidence
hatch-vcs (changelog) ==0.4.0 -> ==0.5.0 age confidence
hatchling (source, changelog) ==1.27.0 -> ==1.28.0 age confidence
idna (changelog) ==3.10 -> ==3.11 age confidence
iniconfig ==2.1.0 -> ==2.3.0 age confidence
isort (changelog) ==6.0.1 -> ==6.1.0 age confidence
jinja2 (changelog) ==3.1.4 -> ==3.1.6 age confidence
mkdocs-autorefs (changelog) ==1.2.0 -> ==1.4.3 age confidence
mkdocs-material (changelog) ==9.5.50 -> ==9.7.0 age confidence
mkdocstrings (changelog) ==0.26.1 -> ==0.30.1 age confidence
mkdocstrings-python (changelog) ==1.11.1 -> ==1.19.0 age confidence
pdm-backend ==2.4.4 -> ==2.4.6 age confidence
platformdirs (changelog) ==4.3.7 -> ==4.5.1 age confidence
pluggy ==1.5.0 -> ==1.6.0 age confidence
poetry-core ==2.1.2 -> ==2.2.1 age confidence
pycodestyle (changelog) ==2.13.0 -> ==2.14.0 age confidence
pyflakes ==3.3.2 -> ==3.4.0 age confidence
pylint (changelog) ==3.3.6 -> ==3.3.9 age confidence
pymdown-extensions ==10.15 -> ==10.17.2 age confidence
pytest (changelog) ==8.3.5 -> ==8.4.2 age confidence
pyyaml (source) ==6.0.2 -> ==6.0.3 age confidence
requests (source, changelog) ==2.32.3 -> ==2.32.5 age confidence
ruamel-yaml ==0.18.10 -> ==0.18.16 age confidence
ruamel-yaml-clib ==0.2.12 -> ==0.2.15 age confidence
stevedore ==5.4.1 -> ==5.6.0 age confidence
tomli (changelog) ==2.2.1 -> ==2.3.0 age confidence
tomlkit ==0.13.2 -> ==0.13.3 age confidence
trove-classifiers ==2025.3.19.19 -> ==2025.12.1.14 age confidence
types-PyYAML (changelog) ==6.0.12.20250402 -> ==6.0.12.20250915 age confidence
typing-extensions (changelog) ==4.13.2 -> ==4.15.0 age confidence
urllib3 (changelog) ==2.2.3 -> ==2.6.0 age confidence
virtualenv ==20.30.0 -> ==20.35.4 age confidence
watchdog (changelog) ==5.0.2 -> ==5.0.3 age confidence
yamllint ==1.37.0 -> ==1.37.1 age confidence
zipp ==3.21.0 -> ==3.23.0 age confidence

Release Notes

Python-Markdown/markdown (Markdown)

v3.10

Compare Source

v3.9

Compare Source

v3.8.2

Compare Source

Fixed
  • Fix codecs deprecation in Python 3.14.
  • Fix issue with unclosed comment parsing in Python 3.14.
  • Fix issue with unclosed declarations in Python 3.14.
  • Fix issue with unclosed HTML tag <foo and Python 3.14.

v3.8.1

Compare Source

Fixed
  • Ensure incomplete markup declaration in raw HTML doesn't crash parser (#​1534).
  • Fixed dropped content in md_in_html (#​1526).
  • Fixed HTML handling corner case that prevented some content from not being rendered (#​1528).
pygments/pygments (Pygments)

v2.19.2

Compare Source

(released June 21st, 2025)

pylint-dev/astroid (astroid)

v3.3.11

Compare Source

=============================
Release date: 2025-07-13

  • Fix a crash when parsing an empty arbitrary expression with extract_node (extract_node("__()")).

    Closes #​2734

  • Fix a crash when parsing a slice called in a decorator on a function that is also decorated with
    a known six decorator.

    Closes #​2721

v3.3.10

Compare Source

=============================
Release date: 2025-05-10

  • Avoid importing submodules sharing names with standard library modules.

    Closes #​2684

  • Fix bug where pylint code.custom_extension would analyze code.py or code.pyi instead if they existed.

    Closes pylint-dev/pylint#3631

psf/black (black)

v25.11.0

Compare Source

Highlights
  • Enable base 3.14 support (#​4804)
  • Add support for the new Python 3.14 t-string syntax introduced by PEP 750 (#​4805)
Stable style
  • Fix bug where comments between # fmt: off and # fmt: on were reformatted (#​4811)
  • Comments containing fmt directives now preserve their exact formatting instead of
    being normalized (#​4811)
Preview style
  • Move multiline_string_handling from --unstable to --preview (#​4760)
  • Fix bug where module docstrings would be treated as normal strings if preceded by
    comments (#​4764)
  • Fix bug where python 3.12 generics syntax split line happens weirdly (#​4777)
  • Standardize type comments to form # type: <value> (#​4645)
  • Fix fix_fmt_skip_in_one_liners preview feature to respect # fmt: skip for compound
    statements with semicolon-separated bodies (#​4800)
Configuration
  • Add no_cache option to control caching behavior. (#​4803)
Packaging
  • Releases now include arm64 Linux binaries (#​4773)
  • Releases now include arm64 Windows binaries and wheels (#​4814)
Output
  • Write unchanged content to stdout when excluding formatting from stdin using pipes
    (#​4610)
Blackd
  • Implemented BlackDClient. This simple python client allows to easily send formatting
    requests to blackd (#​4774)
Integrations
  • Enable 3.14 base CI (#​4804)
  • Enhance GitHub Action psf/black to support the required-version major-version-only
    "stability" format when using pyproject.toml (#​4770)
  • Add output-file input to GitHub Action psf/black to write formatter output to a
    file for artifact capture and log cleanliness (#​4824)
  • Improve error message for vim plugin users. It now handles independently vim version
  • Vim: Warn on unsupported Vim and Python versions independently (#​4772)
  • Vim: Print the import paths when importing black fails (#​4675)
  • Vim: Fix handling of virtualenvs that have a different Python version (#​4675)

v25.9.0

Compare Source

Highlights
  • Remove support for pre-python 3.7 await/async as soft keywords/variable names
    (#​4676)
Stable style
  • Fix crash while formatting a long del statement containing tuples (#​4628)
  • Fix crash while formatting expressions using the walrus operator in complex with
    statements (#​4630)
  • Handle # fmt: skip followed by a comment at the end of file (#​4635)
  • Fix crash when a tuple appears in the as clause of a with statement (#​4634)
  • Fix crash when tuple is used as a context manager inside a with statement (#​4646)
  • Fix crash when formatting a \ followed by a \r followed by a comment (#​4663)
  • Fix crash on a \\r\n (#​4673)
  • Fix crash on await ... (where ... is a literal Ellipsis) (#​4676)
  • Fix crash on parenthesized expression inside a type parameter bound (#​4684)
  • Fix crash when using line ranges excluding indented single line decorated items
    (#​4670)
Preview style
  • Fix a bug where one-liner functions/conditionals marked with # fmt: skip would still
    be formatted (#​4552)
  • Improve multiline_string_handling with ternaries and dictionaries (#​4657)
  • Fix a bug where string_processing would not split f-strings directly after
    expressions (#​4680)
  • Wrap the in clause of comprehensions across lines if necessary (#​4699)
  • Remove parentheses around multiple exception types in except and except* without
    as. (#​4720)
  • Add \r style newlines to the potential newlines to normalize file newlines both from
    and to (#​4710)
Parser
  • Rewrite tokenizer to improve performance and compliance (#​4536)
  • Fix bug where certain unusual expressions (e.g., lambdas) were not accepted in type
    parameter bounds and defaults. (#​4602)
Performance
  • Avoid using an extra process when running with only one worker (#​4734)
Integrations
  • Fix the version check in the vim file to reject Python 3.8 (#​4567)
  • Enhance GitHub Action psf/black to read Black version from an additional section in
    pyproject.toml: [project.dependency-groups] (#​4606)
  • Build gallery docker image with python3-slim and reduce image size (#​4686)
Documentation
  • Add FAQ entry for windows emoji not displaying (#​4714)
di/calver (calver)

v2025.10.20

Compare Source

What's Changed

  • Fix DeprecationWarning for datetime.datetime.utcnow() by @​di in #​27

Full Changelog: di/calver@2025.04.17...2025.10.20

certifi/python-certifi (certifi)

v2024.12.14

Compare Source

jawah/charset_normalizer (charset-normalizer)

v3.4.4

Compare Source

Changed
  • Bound setuptools to a specific constraint setuptools>=68,<=81.
  • Raised upper bound of mypyc for the optional pre-built extension to v1.18.2
Removed
  • setuptools-scm as a build dependency.
Misc
  • Enforced hashes in dev-requirements.txt and created ci-requirements.txt for security purposes.
  • Additional pre-built wheels for riscv64, s390x, and armv7l architectures.
  • Restore multiple.intoto.jsonl in GitHub releases in addition to individual attestation file per wheel.

v3.4.3

Compare Source

Changed
  • mypy(c) is no longer a required dependency at build time if CHARSET_NORMALIZER_USE_MYPYC isn't set to 1. (#​595) (#​583)
  • automatically lower confidence on small bytes samples that are not Unicode in detect output legacy function. (#​391)
Added
  • Custom build backend to overcome inability to mark mypy as an optional dependency in the build phase.
  • Support for Python 3.14
Fixed
  • sdist archive contained useless directories.
  • automatically fallback on valid UTF-16 or UTF-32 even if the md says it's noisy. (#​633)
Misc
  • SBOM are automatically published to the relevant GitHub release to comply with regulatory changes.
    Each published wheel comes with its SBOM. We choose CycloneDX as the format.
  • Prebuilt optimized wheel are no longer distributed by default for CPython 3.7 due to a change in cibuildwheel.

v3.4.2

Compare Source

Fixed
  • Addressed the DeprecationWarning in our CLI regarding argparse.FileType by backporting the target class into the package. (#​591)
  • Improved the overall reliability of the detector with CJK Ideographs. (#​605) (#​587)
Changed
  • Optional mypyc compilation upgraded to version 1.15 for Python >= 3.8

v3.4.1

Compare Source

Changed
  • Project metadata are now stored using pyproject.toml instead of setup.cfg using setuptools as the build backend.
  • Enforce annotation delayed loading for a simpler and consistent types in the project.
  • Optional mypyc compilation upgraded to version 1.14 for Python >= 3.8
Added
  • pre-commit configuration.
  • noxfile.
Removed
  • build-requirements.txt as per using pyproject.toml native build configuration.
  • bin/integration.py and bin/serve.py in favor of downstream integration test (see noxfile).
  • setup.cfg in favor of pyproject.toml metadata configuration.
  • Unused utils.range_scan function.
Fixed
  • Converting content to Unicode bytes may insert utf_8 instead of preferred utf-8. (#​572)
  • Deprecation warning "'count' is passed as positional argument" when converting to Unicode bytes on Python 3.13+

v3.4.0

Compare Source

Added
  • Argument --no-preemptive in the CLI to prevent the detector to search for hints.
  • Support for Python 3.13 (#​512)
Fixed
  • Relax the TypeError exception thrown when trying to compare a CharsetMatch with anything else than a CharsetMatch.
  • Improved the general reliability of the detector based on user feedbacks. (#​520) (#​509) (#​498) (#​407) (#​537)
  • Declared charset in content (preemptive detection) not changed when converting to utf-8 bytes. (#​381)
pallets/click (click)

v8.3.1

Compare Source

Released 2025-11-15

  • Don't discard pager arguments by correctly using subprocess.Popen. :issue:3039
    :pr:3055
  • Replace Sentinel.UNSET default values by None as they're passed through
    the Context.invoke() method. :issue:3066 :issue:3065 :pr:3068
  • Fix conversion of Sentinel.UNSET happening too early, which caused incorrect
    behavior for multiple parameters using the same name. :issue:3071 :pr:3079
  • Hide Sentinel.UNSET values as None when looking up for other parameters
    through the context inside parameter callbacks. :issue:3136 :pr:3137
  • Fix rendering when prompt and confirm parameter prompt_suffix is
    empty. :issue:3019 :pr:3021
  • When Sentinel.UNSET is found during parsing, it will skip calls to
    type_cast_value. :issue:3069 :pr:3090

v8.3.0

Compare Source

Released 2025-09-17

  • Improved flag option handling: Reworked the relationship between flag_value
    and default parameters for better consistency:

    • The default parameter value is now preserved as-is and passed directly
      to CLI functions (no more unexpected transformations)
    • Exception: flag options with default=True maintain backward compatibility
      by defaulting to their flag_value
    • The default parameter can now be any type (bool, None, etc.)
    • Fixes inconsistencies reported in: :issue:1992 :issue:2514 :issue:2610
      :issue:3024 :pr:3030
  • Allow default to be set on Argument for nargs = -1. :issue:2164
    :pr:3030

  • Show correct auto complete value for nargs option in combination with flag
    option :issue:2813

  • Fix handling of quoted and escaped parameters in Fish autocompletion. :issue:2995 :pr:3013

  • Lazily import shutil. :pr:3023

  • Properly forward exception information to resources registered with
    click.core.Context.with_resource(). :issue:2447 :pr:3058

  • Fix regression related to EOF handling in CliRunner. :issue:2939 :pr:2940

v8.2.2

Compare Source

Released 2025-07-31

  • Fix reconciliation of default, flag_value and type parameters for
    flag options, as well as parsing and normalization of environment variables.
    :issue:2952 :pr:2956
  • Fix typing issue in BadParameter and MissingParameter exceptions for the
    parameter param_hint that did not allow for a sequence of string where the
    underlying function _join_param_hints allows for it. :issue:2777 :pr:2990
  • Use the value of Enum choices to render their default value in help
    screen. Refs :issue:2911 :pr:3004
  • Fix completion for the Z shell (zsh) for completion items containing
    colons. :issue:2703 :pr:2846
  • Don't include envvar in error hint when not configured. :issue:2971 :pr:2972
  • Fix a rare race in click.testing.StreamMixer's finalization that manifested
    as a ValueError on close in a multi-threaded test session.
    :issue:2993 :pr:2991

v8.2.1

Compare Source

Released 2025-05-20

  • Fix flag value handling for flag options with a provided type. :issue:2894
    :issue:2897 :pr:2930
  • Fix shell completion for nested groups. :issue:2906 :pr:2907
  • Flush sys.stderr at the end of CliRunner.invoke. :issue:2682
  • Fix EOF handling for stdin input in CliRunner. :issue:2787

v8.2.0

Compare Source

Released 2025-05-10

  • Drop support for Python 3.7, 3.8, and 3.9. :pr:2588 :pr:2893

  • Use modern packaging metadata with pyproject.toml instead of setup.cfg.
    :pr:2438

  • Use flit_core instead of setuptools as build backend. :pr:2543

  • Deprecate the __version__ attribute. Use feature detection, or
    importlib.metadata.version("click"), instead. :issue:2598

  • BaseCommand is deprecated. Command is the base class for all
    commands. :issue:2589

  • MultiCommand is deprecated. Group is the base class for all group
    commands. :issue:2590

  • The current parser and related classes and methods, are deprecated.
    :issue:2205

    • OptionParser and the parser module, which is a modified copy of
      optparse in the standard library.
    • Context.protected_args is unneeded. Context.args contains any
      remaining arguments while parsing.
    • Parameter.add_to_parser (on both Argument and Option) is
      unneeded. Parsing works directly without building a separate parser.
    • split_arg_string is moved from parser to shell_completion.
  • Enable deferred evaluation of annotations with
    from __future__ import annotations. :pr:2270

  • When generating a command's name from a decorated function's name, the
    suffixes _command, _cmd, _group, and _grp are removed.
    :issue:2322

  • Show the types.ParamType.name for types.Choice options within
    --help message if show_choices=False is specified.
    :issue:2356

  • Do not display default values in prompts when Option.show_default is
    False. :pr:2509

  • Add get_help_extra method on Option to fetch the generated extra
    items used in get_help_record to render help text. :issue:2516
    :pr:2517

  • Keep stdout and stderr streams independent in CliRunner. Always
    collect stderr output and never raise an exception. Add a new
    output stream to simulate what the user sees in its terminal. Removes
    the mix_stderr parameter in CliRunner. :issue:2522 :pr:2523

  • Option.show_envvar now also shows environment variable in error messages.
    :issue:2695 :pr:2696

  • Context.close will be called on exit. This results in all
    Context.call_on_close callbacks and context managers added via
    Context.with_resource to be closed on exit as well. :pr:2680

  • Add ProgressBar(hidden: bool) to allow hiding the progressbar. :issue:2609

  • A UserWarning will be shown when multiple parameters attempt to use the
    same name. :issue:2396

  • When using Option.envvar with Option.flag_value, the flag_value
    will always be used instead of the value of the environment variable.
    :issue:2746 :pr:2788

  • Add Choice.get_invalid_choice_message method for customizing the
    invalid choice message. :issue:2621 :pr:2622

  • If help is shown because no_args_is_help is enabled (defaults to True
    for groups, False for commands), the exit code is 2 instead of 0.
    :issue:1489 :pr:1489

  • Contexts created during shell completion are closed properly, fixing
    a ResourceWarning when using click.File. :issue:2644 :pr:2800
    :pr:2767

  • click.edit(filename) now supports passing an iterable of filenames in
    case the editor supports editing multiple files at once. Its return type
    is now also typed: AnyStr if text is passed, otherwise None.
    :issue:2067 :pr:2068

  • Specialized typing of progressbar(length=...) as ProgressBar[int].
    :pr:2630

  • Improve echo_via_pager behaviour in face of errors.
    :issue:2674

    • Terminate the pager in case a generator passed to echo_via_pager
      raises an exception.
    • Ensure to always close the pipe to the pager process and wait for it
      to terminate.
    • echo_via_pager will not ignore KeyboardInterrupt anymore. This
      allows the user to search for future output of the generator when
      using less and then aborting the program using ctrl-c.
  • deprecated: bool | str can now be used on options and arguments. This
    previously was only available for Command. The message can now also be
    customised by using a str instead of a bool. :issue:2263 :pr:2271

    • Command.deprecated formatting in --help changed from
      (Deprecated) help to help (DEPRECATED).
    • Parameters cannot be required nor prompted or an error is raised.
    • A warning will be printed when something deprecated is used.
  • Add a catch_exceptions parameter to CliRunner. If
    catch_exceptions is not passed to CliRunner.invoke, the value
    from CliRunner is used. :issue:2817 :pr:2818

  • Option.flag_value will no longer have a default value set based on
    Option.default if Option.is_flag is False. This results in
    Option.default not needing to implement __bool__. :pr:2829

  • Incorrect click.edit typing has been corrected. :pr:2804

  • Choice is now generic and supports any iterable value.
    This allows you to use enums and other non-str values. :pr:2796
    :issue:605

  • Fix setup of help option's defaults when using a custom class on its
    decorator. Removes HelpOption. :issue:2832 :pr:2840

v8.1.8

Compare Source

Released 2024-12-19

  • Fix an issue with type hints for click.open_file(). :issue:2717
  • Fix issue where error message for invalid click.Path displays on
    multiple lines. :issue:2697
  • Fixed issue that prevented a default value of "" from being displayed in
    the help for an option. :issue:2500
  • The test runner handles stripping color consistently on Windows.
    :issue:2705
  • Show correct value for flag default when using default_map.
    :issue:2632
  • Fix click.echo(color=...) passing color to coloroma so it can be
    forced on Windows. :issue:2606.
  • More robust bash version check, fixing problem on Windows with git-bash.
    :issue:2638
  • Cache the help option generated by the help_option_names setting to
    respect its eagerness. :pr:2811
  • Replace uses of os.system with subprocess.Popen. :issue:1476
  • Exceptions generated during a command will use the context's color
    setting when being displayed. :issue:2193
  • Error message when defining option with invalid name is more descriptive.
    :issue:2452
  • Refactor code generating default --help option to deduplicate code.
    :pr:2563
  • Test CLIRunner resets patched _compat.should_strip_ansi.
    :issue:2732
cython/cython (cython)

v3.2.2

Compare Source

==================

Features added

  • The C-API declarations were updated to include the new PyDict_*Ref() functions.
    (Github issue :issue:7291)

Bugs fixed

  • Iteration over literal sequences and strings in generators generated invalid C code since 3.2.0.
    This was a regression due to the C array iteration optimisation in :issue:6926, which is now
    disabled inside of generators.
    (Github issue :issue:7342)

  • Calling special methods of known exception types failed with an AttributeError.
    (Github issue :issue:7342)

  • Calling the unbound __mul__ special method of builtin collections with subtypes failed.
    (Github issue :issue:7340)

  • C string literals could generate invalid "const to non-const" casts in the C code.
    (Github issue :issue:7346)

  • yield is no longer allowed inside of a cython.critical_section,
    but is now allowed while holding a cython.pymutex.
    (Github issue :issue:7317)

  • Under lock congestion, acquiring the GIL could crash in Python 3.11, part 2.
    This bug was introduced in Cython 3.2.0.
    (Github issue :issue:7312)

  • The new py_safe_* functions in libc.threads triggered C compiler warnings.
    (Github issue :issue:7356)

v3.2.1

Compare Source

==================

Features added

  • Cython now leaves markers about its utility code dependencies in the generated C code
    to help debugging "unused function" C compiler warnings.
    (Github issue :issue:7294)

Bugs fixed

  • Relative imports could fail if the shared utility module is used.
    This bug was introduced in Cython 3.2.0.
    (Github issue :issue:7290)

  • Under lock congestion, acquiring the GIL could crash in Python 3.11.
    This bug was introduced in Cython 3.2.0.
    (Github issue :issue:7312)

  • Using the shared utility module left an unused C function in user modules with memoryviews.
    To make debugging this kind of issue easier, Cython now leaves "used by …" markers in the
    generated C files that indicate why a specific piece of utility code was included.
    This bug was introduced in Cython 3.2.0.
    (Github issue :issue:7293)

  • Code using the pre-import scope failed with an undefined name.
    This bug was introduced in Cython 3.2.0.
    (Github issue :issue:7304)

  • Includes all fixes as of Cython 3.1.7.

v3.2.0

Compare Source

==================

(Complete changelog for the 3.2.0 release, including pre-releases.)

Features added

  • Builtin exception types are now inferred.
    (Github issue :issue:6908)

  • The list of known, inferred and optimised Python builtins was updated.
    range is now considered a type. ascii, bin, format, hex, oct were added as functions.
    (Github issue :issue:6931)

  • The f-string syntax was extended according to PEP-701.
    (Github issue :issue:5452)

  • t-strings are implemented according to PEP-750. The implementation backports the template classes
    but prefers existing backports if installed separately.
    (Github issue :issue:6811)

  • Unknown return type annotations with -> are no longer rejected but produce warnings.
    This allows better integration with Python type hints that are not always usable for Cython.
    -> None is also allowed now.
    Patch by jpe. (Github issue :issue:6946)

  • The runtime Python dispatch for fused functions is substantially faster.
    (Github issues :issue:1385, :issue:6996)

  • Freelists (via cdef class decorator and for internally used types such as async)
    are now also used in the Limited API and with extension type specs enabled.
    (Github issue :issue:7151)

  • Module imports now quickly check for an already imported module to speed up reimports.
    Patch by Lysandros Nikolaou. (Github issue :issue:7035)

  • Type checks on PEP-604 union types (int | None) are optimised into separate checks.
    (Github issue :issue:6935)

  • Assignments to the PEP-604 union type float | None allow any suitable Python number as input
    and convert it to a Python float automatically.
    (Github issue :issue:5750)

  • Item type inference was improved for looping over literals.
    (Github issue :issue:6912)

  • Looping over literal sequences and strings now uses efficient C array looping if possible.
    (Github issue :issue:6926)

  • Releasing the GIL from an unknown lock state is more efficient.
    (Github issue :issue:6847)

  • cython.critical_section(PyMutex) now works, as with Python objects.
    (Github issue :issue:6847)

  • bool(c_int/float/ptr) avoid passing through Python objects.
    (Github issue :issue:7015)

  • Variables assigned inside of prange loops can now be initialised outside of the loop.
    (Github issue :issue:7178)

  • Unused exceptions in except clauses are detected in some more cases to avoid their normalisation.
    (Github issue :issue:7021)

  • Mixed operations on C integers with Python ints use less code and are more streamlined for Py3.12+.
    (Github issue :issue:7244)

  • Some object constants are now marked as immortal to speed up their reference counting
    in recent CPython versions. This can be configured with the CYTHON_IMMORTAL_CONSTANTS C macro.
    (Github issue :issue:7118)

  • Further improvements were made to reduce the size of the resulting extension modules.
    (Github issue :issue:6983, :issue:7199, :issue:7220, :issue:7238,
    :issue:7255, :issue:7265)

  • Several improvements were made in freethreaded Python code.
    (Github issues :issue:6936, :issue:6939, :issue:6949, :issue:6984,
    :issue:7011, :issue:7066, :issue:7114, :issue:7200)

  • Several improvements were made for the Limited API.
    (Github issues :issue:6959, :issue:6991)

  • Several improvements were made for the GraalPython support.
    Patch by Michael Šimáček. (Github issue :issue:7074)

  • Some GIL-safe C-API wrappers were added to the libc/libcpp declarations.
    (Github issue :issue:6829, :issue:6993)

  • String and number constants use less storage space in the module.
    (Github issues :issue:6971, :issue:6978, :issue:6986)

  • The managed dict/weakref support in CPython 3.12+ is used for internal types
    to benefit from future CPython optimisations here.
    (Github issue :issue:6891)

  • Using NaN as exception return value is supported.
    (Github issues :issue:6900, :issue:6903)

  • Declarations for C++ condition variables were added.
    (Github issue :issue:6836)

  • The annotated source HTML page shows alternating +/− markers to open/close lines.
    Patch by Kamil Monicz. (Github issue :issue:7099)

  • cython --embed gained a new option --embed-modules=… to list further extension modules
    that will be statically linked into the generated extension module, to get them initialised
    on application start.
    (Github issue :issue:2849)

  • The setup.py script of Cython now allows passing the desired Limited API version
    like --cython-limited-api=3.11.
    (Github issue


Configuration

📅 Schedule: Branch creation - "after 5pm on friday and saturday" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

To execute skipped test pipelines write comment /ok-to-test.


Documentation

Find out how to configure dependency updates in MintMaker documentation or see all available configuration options in Renovate documentation.

@red-hat-konflux red-hat-konflux bot force-pushed the konflux/mintmaker/main/pip-requirements branch 4 times, most recently from b2ee429 to 011b1c4 Compare May 17, 2025 09:09
@red-hat-konflux red-hat-konflux bot force-pushed the konflux/mintmaker/main/pip-requirements branch 3 times, most recently from 36f79ae to d40935b Compare May 24, 2025 19:14
@red-hat-konflux red-hat-konflux bot force-pushed the konflux/mintmaker/main/pip-requirements branch 3 times, most recently from 2898edc to 098b42f Compare June 7, 2025 09:36
@red-hat-konflux red-hat-konflux bot force-pushed the konflux/mintmaker/main/pip-requirements branch from 098b42f to 3d8d02b Compare June 14, 2025 05:14
@red-hat-konflux red-hat-konflux bot force-pushed the konflux/mintmaker/main/pip-requirements branch 4 times, most recently from fe6e507 to 65978bd Compare June 21, 2025 21:04
@red-hat-konflux red-hat-konflux bot force-pushed the konflux/mintmaker/main/pip-requirements branch 3 times, most recently from 3e429b0 to c61f7d0 Compare July 5, 2025 09:17
@red-hat-konflux red-hat-konflux bot force-pushed the konflux/mintmaker/main/pip-requirements branch 3 times, most recently from aa67323 to e5dc563 Compare July 12, 2025 10:51
@red-hat-konflux red-hat-konflux bot force-pushed the konflux/mintmaker/main/pip-requirements branch 2 times, most recently from 61b8a8f to 6c448ad Compare July 19, 2025 20:01
@red-hat-konflux red-hat-konflux bot force-pushed the konflux/mintmaker/main/pip-requirements branch 3 times, most recently from acab71d to 5757ef5 Compare August 16, 2025 08:40
@red-hat-konflux red-hat-konflux bot force-pushed the konflux/mintmaker/main/pip-requirements branch 2 times, most recently from 818b9d8 to 0a2d2af Compare August 23, 2025 08:44
@red-hat-konflux red-hat-konflux bot force-pushed the konflux/mintmaker/main/pip-requirements branch 2 times, most recently from 9e0c1a1 to d75ea7f Compare August 30, 2025 12:37
@red-hat-konflux red-hat-konflux bot force-pushed the konflux/mintmaker/main/pip-requirements branch 3 times, most recently from b92c8d5 to 329c1ef Compare September 13, 2025 16:28
@red-hat-konflux red-hat-konflux bot force-pushed the konflux/mintmaker/main/pip-requirements branch 4 times, most recently from 534effa to fe3fda6 Compare September 26, 2025 20:21
@red-hat-konflux red-hat-konflux bot force-pushed the konflux/mintmaker/main/pip-requirements branch 3 times, most recently from 186279b to ebc4d20 Compare October 4, 2025 20:23
@red-hat-konflux red-hat-konflux bot force-pushed the konflux/mintmaker/main/pip-requirements branch 2 times, most recently from f4fa384 to f870529 Compare October 17, 2025 20:20
@red-hat-konflux red-hat-konflux bot force-pushed the konflux/mintmaker/main/pip-requirements branch 2 times, most recently from bf5d176 to e43ee3b Compare October 24, 2025 20:19
@red-hat-konflux red-hat-konflux bot force-pushed the konflux/mintmaker/main/pip-requirements branch 3 times, most recently from f2cc9c4 to 04f47fc Compare November 1, 2025 20:27
@red-hat-konflux red-hat-konflux bot force-pushed the konflux/mintmaker/main/pip-requirements branch 3 times, most recently from b63345a to 7048188 Compare November 14, 2025 17:02
@red-hat-konflux red-hat-konflux bot force-pushed the konflux/mintmaker/main/pip-requirements branch 4 times, most recently from 9df2bbd to 1f37007 Compare November 21, 2025 17:05
@red-hat-konflux red-hat-konflux bot force-pushed the konflux/mintmaker/main/pip-requirements branch 4 times, most recently from 7799fc8 to e0bb295 Compare November 28, 2025 20:57
Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
@red-hat-konflux red-hat-konflux bot force-pushed the konflux/mintmaker/main/pip-requirements branch from e0bb295 to b802219 Compare December 5, 2025 20:55
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants