Skip to content

Conversation

@renovate
Copy link

@renovate renovate bot commented Aug 13, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
greenlet (changelog) ==3.0.1==3.3.1 age adoption passing confidence

Release Notes

python-greenlet/greenlet (greenlet)

v3.3.1

Compare Source

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

  • Publish Windows ARM binary wheels, where available.
  • Fix compilation for 3.14t on Windows.
  • Publish Windows 3.14t binary wheels for Intel.
  • Switch from Appveyor for Windows to Github Actions.
  • Fix compilation on MIPS with GCC 15 and binutils 2.45. See PR 487 by Rosen Penev <https://github.com/python-greenlet/greenlet/pull/487>_. Note that
    this is not a platform tested by this project's CI.
  • Move most project metadata into the static pyproject.toml file.
    This updates licensing information to use the modern
    License-Expression field. See PR 480 by mrbean-bremen <https://github.com/python-greenlet/greenlet/pull/480/>_.

v3.3.0

Compare Source

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

  • Drop support for Python 3.9.

  • Switch to distributing manylinux_2_28 wheels instead of
    manylinux2014 wheels. Likewise, switch from musllinux_1_1 to 1_2.

  • Add initial support for free-threaded builds of CPython 3.14. Due to
    limitations, we do not distribute binary wheels for free-threaded
    CPython on Windows. (Free-threaded CPython 3.13 may work, but is
    untested and unsupported.)

    .. caution::

    Under some rare scenarios with free-threaded 3.14, the
    interpreter may crash on accessing a variable or attribute or
    when shutting down. If this happens, try disabling the
    thread-local bytecode cache. See the greenlet documentation for
    more details. See PR 472 by T. Wouters <https://github.com/python-greenlet/greenlet/pull/472>_ for the
    initial free-threaded support and a discussion of the current
    known issues.

v3.2.4

Compare Source

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

.. note::

The 3.2.x series will be the last to support Python 3.9.

  • Various small build/test changes for less common configurations (e.g.,
    building CPython with assertions enabled but NOT debugging),
    contributed by Michał Górny. Note that while greenlet will BUILD in
    a free-threaded Python, it will cause the GIL to be allocated and
    used, and memory may leak. Also note that these configurations
    are not tested by this project's CI.
  • Fix an assertion error on debug builds of Python 3.14 when using the
    experimental JIT. See issue 460 <https://github.com/python-greenlet/greenlet/issues/460>_.

v3.2.3

Compare Source

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

  • Make greenlet build and run on Python 3.14 beta 2 on Windows amd64.
  • Potentially fix build on NetBSD/sparc64. See PR 447 <https://github.com/python-greenlet/greenlet/pull/447>_.

v3.2.2

Compare Source

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

  • Make greenlet build and run on Python 3.14 beta 1. It will not run
    on earlier versions of 3.14; it should run on subsequent versions.
    See PR 445 <https://github.com/python-greenlet/greenlet/pull/445>_.

v3.2.1

Compare Source

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

  • Fix a crash regression for Riscv64. See issue 443 <https://github.com/python-greenlet/greenlet/issues/443>_.

v3.2.0

Compare Source

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

  • Remove support for Python 3.7 and 3.8.
  • Add untested, community supported implementation for RiscV 32. See
    PR 438 <https://github.com/python-greenlet/greenlet/pull/439>_.
  • Make greenlet build and run on Python 3.14a7. It will not build on
    earlier 3.14 alpha releases, and may not build on later 3.14
    releases.
  • Packaging: Use :pep:639 license expressions and include license files.

v3.1.1

Compare Source

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

  • Fix crashes on 32-bit PPC Linux. Note that there is no CI for this,
    and support is best effort; there may be other issues lurking.
    See issue 422 <https://github.com/python-greenlet/greenlet/issues/422>_.
  • Remove unnecessary logging sometimes during interpreter shutdown.
    See issue 426 <https://github.com/python-greenlet/greenlet/issues/426>_.
  • Fix some crashes on 32-bit PPC MacOS. This is a very old platform,
    and is only known to be tested on beta versions of an operating
    system that was never released, using the GCC 14 only provided by
    MacPorts; it may or may not work on the final MacOS X release that
    supported 32-bit PowerPC. It has the known issue of leaking memory
    when greenlets are used in multiple threads. Help debugging this
    would be appreciated. See PR 419 <https://github.com/python-greenlet/greenlet/pull/419>_.

v3.1.0

Compare Source

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

.. note::

This will be the last release to support Python 3.7 and 3.8.
  • Adds support for Python 3.13.

.. note::

greenlet will not work in no-gil (free threaded) builds of CPython.
Internally, greenlet heavily depends on the GIL.

  • Greatly reduce the chances for crashes during interpreter shutdown.
    See issue 411 <https://github.com/python-greenlet/greenlet/issues/411>_.

Platform Support

Support for the following platforms was contributed by the community.
Note that they are untested by this project's continuous integration
services.

  • Hitachi's SuperH CPU <https://github.com/python-greenlet/greenlet/issues/166>_.
  • NetBSD on PowerPC. <https://github.com/python-greenlet/greenlet/pull/402>_
  • RiscV 64 with -fno-omit-frame-pointer <https://github.com/python-greenlet/greenlet/pull/404>. Note that
    there are known test failures <https://github.com/python-greenlet/greenlet/issues/403>
    , so this
    platform may not work reliably at all.

v3.0.3

Compare Source

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

  • Python 3.12: Restore the full ability to walk the stack of a suspended
    greenlet; previously only the innermost frame was exposed. See issue 388 <https://github.com/python-greenlet/greenlet/issues/388>. Fix by
    Joshua Oreman in PR 393 <https://github.com/python-greenlet/greenlet/pull/393/>
    .

v3.0.2

Compare Source

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

  • Packaging: Add a minimal pyproject.toml to sdists.
  • Packaging: Various updates to macOS wheels.
  • Fix a test case on Arm32. Note that this is not a supported platform
    (there is no CI for it) and support is best effort; there may be
    other issues lurking. See issue 385 <https://github.com/python-greenlet/greenlet/issues/385>_

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


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

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot changed the title chore(deps): update dependency greenlet to v3.0.3 chore(deps): update dependency greenlet to v3.1.0 Sep 11, 2024
@renovate renovate bot force-pushed the renovate/greenlet-3.x branch from 30e951d to 596e247 Compare September 11, 2024 02:46
@renovate renovate bot changed the title chore(deps): update dependency greenlet to v3.1.0 chore(deps): update dependency greenlet to v3.1.1 Sep 21, 2024
@renovate renovate bot force-pushed the renovate/greenlet-3.x branch from 596e247 to 8e22b13 Compare September 21, 2024 02:43
@renovate renovate bot changed the title chore(deps): update dependency greenlet to v3.1.1 chore(deps): update dependency greenlet to v3.2.0 Apr 17, 2025
@renovate renovate bot force-pushed the renovate/greenlet-3.x branch from 8e22b13 to d7d07c6 Compare April 17, 2025 23:51
@renovate renovate bot changed the title chore(deps): update dependency greenlet to v3.2.0 chore(deps): update dependency greenlet to v3.2.1 Apr 23, 2025
@renovate renovate bot force-pushed the renovate/greenlet-3.x branch from d7d07c6 to 013fce3 Compare April 23, 2025 00:00
@renovate renovate bot changed the title chore(deps): update dependency greenlet to v3.2.1 chore(deps): update dependency greenlet to v3.2.2 May 10, 2025
@renovate renovate bot force-pushed the renovate/greenlet-3.x branch from 013fce3 to f2c8331 Compare May 10, 2025 00:12
@renovate renovate bot changed the title chore(deps): update dependency greenlet to v3.2.2 chore(deps): update dependency greenlet to v3.2.3 Jun 6, 2025
@renovate renovate bot force-pushed the renovate/greenlet-3.x branch from f2c8331 to 40c8a2a Compare June 6, 2025 17:22
@renovate renovate bot force-pushed the renovate/greenlet-3.x branch from 40c8a2a to 433f2d7 Compare July 27, 2025 12:04
@renovate renovate bot changed the title chore(deps): update dependency greenlet to v3.2.3 chore(deps): update dependency greenlet to v3.2.4 Aug 8, 2025
@renovate renovate bot force-pushed the renovate/greenlet-3.x branch from 433f2d7 to 14525dc Compare August 8, 2025 03:57
@renovate renovate bot force-pushed the renovate/greenlet-3.x branch 2 times, most recently from 35615fb to ab59353 Compare August 27, 2025 00:16
@renovate renovate bot force-pushed the renovate/greenlet-3.x branch from ab59353 to 135322f Compare November 15, 2025 12:02
@renovate renovate bot changed the title chore(deps): update dependency greenlet to v3.2.4 chore(deps): update dependency greenlet to v3.3.0 Dec 5, 2025
@renovate renovate bot force-pushed the renovate/greenlet-3.x branch from 135322f to 50617cd Compare December 5, 2025 00:09
@renovate renovate bot force-pushed the renovate/greenlet-3.x branch from 50617cd to c45cebc Compare January 24, 2026 15:01
@renovate renovate bot changed the title chore(deps): update dependency greenlet to v3.3.0 chore(deps): update dependency greenlet to v3.3.1 Jan 24, 2026
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.

1 participant