Overview
SciPy 1.16.1, released on July 27, 2025, is the first version to ship Python 3.14 binaries.
Main Features
Python 3.14 binaries
SciPy 1.16.1 is the first major scientific library to publish wheels for Python 3.14, enabling direct installation via pip.
python
# Install on Python 3.14
# pip install scipy==1.16.1
import scipy
print(scipy.__version__) # 1.16.1
import sys
print(sys.version) # 3.14.x
