Bvoxro Stack

Python Packagers Gain a Council, 3.15 Alpha Boosts JIT Gains, and More April 2026 Updates

April 2026: Python gets a Packaging Council, 3.15 alpha 8 delivers JIT speedups (6-13%), incremental GC reverted, Google Gemma 4, Starlette 1.0, OpenAI acquires Astral.

Bvoxro Stack · 2026-05-05 02:57:23 · Programming

A Month of Milestones for Python

April 2026 brought significant structural changes to the Python packaging ecosystem, notable performance improvements in the latest alpha release, and a few surprises from the broader tech world that will affect Python developers. The Python Packaging Authority (PyPA) now has a formally elected Packaging Council, Python 3.15.0 alpha 8 delivers a refreshed Just-In-Time (JIT) compiler, and the incremental garbage collector from Python 3.14 is rolled back. Meanwhile, Google released the open-weights Gemma 4 family, Starlette hit a major 1.0 milestone, and the Python community learned that OpenAI acquired Astral, the company behind uv, Ruff, and ty. Let's explore each story.

Python Packagers Gain a Council, 3.15 Alpha Boosts JIT Gains, and More April 2026 Updates
Source: realpython.com

Python's First Elected Packaging Council

On April 16, PEP 772 was accepted, creating a dedicated Python Packaging Council. This new five-member governing body will make binding decisions about packaging standards and tools, bringing formal structure to what was previously handled informally by the Python Packaging Authority (PyPA). The council operates with authority comparable to the Python Steering Council, and its members are elected by the packaging community. This marks the first time packaging decisions have such a clear, democratic governance path.

Python 3.15 Alpha 8: Final Alpha Before Feature Freeze

Python 3.15.0 alpha 8 was released on April 7, alongside maintenance updates for 3.14.4 and 3.13.13. Release manager Hugo van Kemenade confirmed that alpha 8 is the last alpha before the beta phase begins on May 5. After that date, no new features will be accepted for Python 3.15. Library maintainers should file any issues against unreleased features now to have a reasonable chance of resolution before the freeze.

Refreshed JIT Delivers Measurable Speedups

The headline improvement in alpha 8 is the refreshed JIT compiler. On x86-64 Linux, it yields a geometric mean improvement of 6–7% over the standard interpreter. On AArch64 macOS, the gain is even more impressive at 12–13% compared to the tail-calling interpreter introduced in Python 3.14. These are not microbenchmark artifacts; they represent cumulative gains across a broad suite of workloads.

Incremental Garbage Collector Reverted

The incremental garbage collector introduced in Python 3.14 has been reverted after production reports of runaway memory usage. The fix will land in the upcoming Python 3.14.5 patch release. This decision was made by the core team to restore stability, demonstrating a responsive approach to real-world issues.

Python Packagers Gain a Council, 3.15 Alpha Boosts JIT Gains, and More April 2026 Updates
Source: realpython.com

PEPs Consolidated in Alpha 8

Alpha 8 incorporates several PEPs already discussed in earlier alphas:

  • PEP 810: Explicit lazy imports
  • PEP 814: frozendict as a built-in type
  • PEP 799: Statistical sampling profiler
  • PEP 798: Unpacking in comprehensions
  • PEP 686: UTF-8 as the default encoding
  • PEP 728: TypedDict enhancements

Other Ecosystem News

Google Releases Gemma 4 Open-Weights Models

Google introduced the Gemma 4 family of open-weights models, continuing its push into accessible AI development. These models are designed for a range of natural language tasks and are available under permissive licenses, making them attractive for Python-based machine learning workflows.

Starlette 1.0 Ships as FastAPI Foundation

Starlette, the lightweight ASGI framework that underpins FastAPI, reached version 1.0. This milestone solidifies its stability and reliability for production web applications. FastAPI users will benefit from the improved performance and refined API of Starlette 1.0.

OpenAI Acquires Astral

In a move that surprised many in the Python ecosystem, OpenAI acquired Astral, the company behind uv, Ruff, and ty. While the full implications are still unfolding, this acquisition signals growing interest from large AI companies in Python tooling and package management infrastructure. Developers who rely on uv or Ruff should monitor announcements for any changes.

To stay updated on Python news like this, join the Real Python Newsletter and never miss another tutorial, course, or news update.

Recommended