Overview
Pygame-CE 2.5.7, released on March 2, 2026, ships Python 3.14 wheels and improves Vector2.
Main Features
Python 3.14 wheels
Pygame-CE ships precompiled wheels for Python 3.14 on all supported platforms.
python
import pygame
pygame.init()
screen = pygame.display.set_mode((640, 480))
pygame.display.set_caption('Pygame-CE 2.5.7')
# Improved Vector2
pos = pygame.Vector2(100, 200)
velocity = pygame.Vector2(3, -1).normalize()
pos += velocity * 60
print(f'Position: {pos}')
Vector2 improvements
The Vector2 class benefits from new methods and performance optimizations for vector calculations.
